object Parser
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Parser
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- type Builder[A] = EitherT[S, String, A]
- case class BuilderState(prefixMap: PrefixMap, base: Option[IRI], start: Option[ShapeExpr], shapesMap: ShapesMap, tripleExprMap: TripleExprMap, labelLocationMap: Map[ShapeLabel, Location]) extends Product with Serializable
- type S[A] = IndexedStateT[Eval, BuilderState, BuilderState, A]
- type ShapesMap = ListMap[ShapeLabel, ShapeExpr]
- type Start = Option[ShapeExpr]
- type TripleExprMap = Map[ShapeLabel, TripleExpr]
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addBase(base: IRI): Builder[Unit]
- def addLabelLocation(label: ShapeLabel, location: Location): Builder[Unit]
- def addPrefix(prefix: Prefix, iri: IRI): Builder[Unit]
- def addShape(label: ShapeLabel, expr: ShapeExpr): Builder[Unit]
- def addTripleExprLabel(label: ShapeLabel, te: TripleExpr): Builder[TripleExpr]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def err[A](msg: String): Builder[A]
- def fromEither[A](e: Either[String, A]): Builder[A]
- def getBase: Builder[Option[IRI]]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def getLabelLocationMap: Builder[Map[ShapeLabel, Location]]
- def getPrefixMap: Builder[PrefixMap]
- def getShapesMap: Builder[ShapesMap]
- def getStart: Builder[Start]
- def getState: Builder[BuilderState]
- def getTripleExprMap: Builder[TripleExprMap]
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def info(msg: String): Builder[Unit]
- def initialState(base: Option[IRI]): BuilderState
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def ok[A](x: A): Builder[A]
- def parseSchema(str: String, base: Option[IRI]): Either[String, Schema]
- def parseSchemaFromFile(fileName: String, base: Option[IRI]): Either[String, Schema]
- def parseSchemaReader(reader: Reader, base: Option[IRI]): Either[String, Schema]
- def run[A](c: Builder[A], base: Option[IRI]): (BuilderState, Either[String, A])
- def sequence[A](bs: List[Builder[A]]): Builder[List[A]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def updateStart(s: Start): Builder[Unit]
- def updateState(fn: (BuilderState) => BuilderState): Builder[Unit]
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])