Packages

object Parser

Source
Parser.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Parser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Builder[A] = EitherT[S, String, A]
  2. case class BuilderState(prefixMap: PrefixMap, base: Option[IRI], start: Option[ShapeExpr], shapesMap: ShapesMap, tripleExprMap: TripleExprMap, labelLocationMap: Map[ShapeLabel, Location]) extends Product with Serializable
  3. type S[A] = IndexedStateT[Eval, BuilderState, BuilderState, A]
  4. type ShapesMap = ListMap[ShapeLabel, ShapeExpr]
  5. type Start = Option[ShapeExpr]
  6. type TripleExprMap = Map[ShapeLabel, TripleExpr]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addBase(base: IRI): Builder[Unit]
  5. def addLabelLocation(label: ShapeLabel, location: Location): Builder[Unit]
  6. def addPrefix(prefix: Prefix, iri: IRI): Builder[Unit]
  7. def addShape(label: ShapeLabel, expr: ShapeExpr): Builder[Unit]
  8. def addTripleExprLabel(label: ShapeLabel, te: TripleExpr): Builder[TripleExpr]
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def err[A](msg: String): Builder[A]
  14. def fromEither[A](e: Either[String, A]): Builder[A]
  15. def getBase: Builder[Option[IRI]]
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def getLabelLocationMap: Builder[Map[ShapeLabel, Location]]
  18. def getPrefixMap: Builder[PrefixMap]
  19. def getShapesMap: Builder[ShapesMap]
  20. def getStart: Builder[Start]
  21. def getState: Builder[BuilderState]
  22. def getTripleExprMap: Builder[TripleExprMap]
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. def info(msg: String): Builder[Unit]
  25. def initialState(base: Option[IRI]): BuilderState
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. def ok[A](x: A): Builder[A]
  31. def parseSchema(str: String, base: Option[IRI]): Either[String, Schema]
  32. def parseSchemaFromFile(fileName: String, base: Option[IRI]): Either[String, Schema]
  33. def parseSchemaReader(reader: Reader, base: Option[IRI]): Either[String, Schema]
  34. def run[A](c: Builder[A], base: Option[IRI]): (BuilderState, Either[String, A])
  35. def sequence[A](bs: List[Builder[A]]): Builder[List[A]]
  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. def updateStart(s: Start): Builder[Unit]
  39. def updateState(fn: (BuilderState) ⇒ BuilderState): Builder[Unit]
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped