org.w3.banana

RDFOps

trait RDFOps[Rdf <: RDF] extends URIOps[Rdf] with RDFDSL[Rdf] with CommonPrefixes[Rdf] with RDFSyntax[Rdf]

A Module that gathers the types needed to define an RDF implementation Closely based on http://www.w3.org/TR/rdf11-concepts/ But with the notable exceptions:

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RDFOps
  2. RDFSyntax
  3. SparqlSolutionsSyntax
  4. SparqlSolutionSyntax
  5. AnySyntax
  6. StringSyntax
  7. LiteralSyntax
  8. URISyntax
  9. NodeSyntax
  10. NodeMatchSyntax
  11. TripleSyntax
  12. TripleMatchSyntax
  13. GraphSyntax
  14. CommonPrefixes
  15. RDFDSL
  16. URIOps
  17. AnyRef
  18. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def ANY: Rdf.NodeAny

  2. abstract def appendSegment(uri: Rdf.URI, segment: String): Rdf.URI

    Definition Classes
    URIOps
  3. abstract def diff(g1: Rdf.Graph, g2: Rdf.Graph): Rdf.Graph

  4. abstract def emptyGraph: Rdf.Graph

  5. abstract def find(graph: Rdf.Graph, subject: Rdf.NodeMatch, predicate: Rdf.NodeMatch, objectt: Rdf.NodeMatch): Iterator[Rdf.Triple]

  6. abstract def foldNode[T](node: Rdf.Node)(funURI: (Rdf.URI) ⇒ T, funBNode: (Rdf.BNode) ⇒ T, funLiteral: (Rdf.Literal) ⇒ T): T

  7. abstract def foldNodeMatch[T](nodeMatch: Rdf.NodeMatch)(funANY: ⇒ T, funNode: (Rdf.Node) ⇒ T): T

  8. abstract def fromBNode(bn: Rdf.BNode): String

  9. abstract def fromLang(l: Rdf.Lang): String

  10. abstract def fromLiteral(literal: Rdf.Literal): (String, Rdf.URI, Option[Rdf.Lang])

  11. abstract def fromTriple(triple: Rdf.Triple): (Rdf.Node, Rdf.URI, Rdf.Node)

  12. abstract def fromUri(uri: Rdf.URI): String

  13. abstract def getFragment(uri: Rdf.URI): Option[String]

    returns the fragment part of uri

    returns the fragment part of uri

    Definition Classes
    URIOps
  14. abstract def getString(uri: Rdf.URI): String

    Definition Classes
    URIOps
  15. abstract def getTriples(graph: Rdf.Graph): Iterable[Rdf.Triple]

  16. abstract def graphSize(g: Rdf.Graph): Int

  17. abstract def isPureFragment(uri: Rdf.URI): Boolean

    Definition Classes
    URIOps
  18. abstract def isomorphism(left: Rdf.Graph, right: Rdf.Graph): Boolean

  19. abstract def lastSegment(uri: Rdf.URI): String

    Definition Classes
    URIOps
  20. abstract def makeBNode(): Rdf.BNode

  21. abstract def makeBNodeLabel(s: String): Rdf.BNode

  22. abstract def makeGraph(it: Iterable[Rdf.Triple]): Rdf.Graph

  23. abstract def makeLang(s: String): Rdf.Lang

  24. abstract def makeLangTaggedLiteral(lexicalForm: String, lang: Rdf.Lang): Rdf.Literal

  25. abstract def makeLiteral(lexicalForm: String, datatype: Rdf.URI): Rdf.Literal

  26. abstract def makeTriple(s: Rdf.Node, p: Rdf.URI, o: Rdf.Node): Rdf.Triple

  27. abstract def makeUri(s: String): Rdf.URI

  28. abstract def relativize(uri: Rdf.URI, other: Rdf.URI): Rdf.URI

    Definition Classes
    URIOps
  29. abstract def resolve(uri: Rdf.URI, other: Rdf.URI): Rdf.URI

    Definition Classes
    URIOps
  30. implicit abstract def toConcreteNodeMatch(node: Rdf.Node): Rdf.NodeMatch

  31. abstract def union(graphs: Seq[Rdf.Graph]): Rdf.Graph

  32. abstract def withFragment(uri: Rdf.URI, frag: String): Rdf.URI

    returns uri with frag as its fragment part, newly added or replaced

    returns uri with frag as its fragment part, newly added or replaced

    Definition Classes
    URIOps
  33. abstract def withoutFragment(uri: Rdf.URI): Rdf.URI

    returns uri without its fragment part if it had one

    returns uri without its fragment part if it had one

    Definition Classes
    URIOps

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from RDFOps[Rdf] to any2stringadd[RDFOps[Rdf]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (RDFOps[Rdf], B)

    Implicit information
    This member is added by an implicit conversion from RDFOps[Rdf] to ArrowAssoc[RDFOps[Rdf]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. object BNode

    Definition Classes
    RDFDSL
  7. object Graph

    Definition Classes
    RDFDSL
  8. object Lang

    Definition Classes
    RDFDSL
  9. object Literal

    Definition Classes
    RDFDSL
  10. object Triple

    Definition Classes
    RDFDSL
  11. object URI

    Definition Classes
    RDFDSL
  12. implicit def anyW[T](t: T): AnyW[Rdf, T]

    Definition Classes
    AnySyntax
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def bnode(s: String): Rdf.BNode

    Definition Classes
    RDFDSL
  15. def bnode(): Rdf.BNode

    Definition Classes
    RDFDSL
  16. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. def ensuring(cond: (RDFOps[Rdf]) ⇒ Boolean, msg: ⇒ Any): RDFOps[Rdf]

    Implicit information
    This member is added by an implicit conversion from RDFOps[Rdf] to Ensuring[RDFOps[Rdf]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: (RDFOps[Rdf]) ⇒ Boolean): RDFOps[Rdf]

    Implicit information
    This member is added by an implicit conversion from RDFOps[Rdf] to Ensuring[RDFOps[Rdf]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean, msg: ⇒ Any): RDFOps[Rdf]

    Implicit information
    This member is added by an implicit conversion from RDFOps[Rdf] to Ensuring[RDFOps[Rdf]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean): RDFOps[Rdf]

    Implicit information
    This member is added by an implicit conversion from RDFOps[Rdf] to Ensuring[RDFOps[Rdf]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  23. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from RDFOps[Rdf] to StringFormat[RDFOps[Rdf]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  26. def getObjects(graph: Rdf.Graph, subject: Rdf.Node, predicate: Rdf.URI): Iterable[Rdf.Node]

    Definition Classes
    RDFDSL
  27. def getPredicates(graph: Rdf.Graph, subject: Rdf.Node): Iterable[Rdf.URI]

    Definition Classes
    RDFDSL
  28. def getSubjects(graph: Rdf.Graph, predicate: Rdf.URI, obj: Rdf.Node): Iterable[Rdf.Node]

    Definition Classes
    RDFDSL
  29. implicit def graphW(graph: Rdf.Graph): GraphW[Rdf]

    Definition Classes
    GraphSyntax
  30. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  31. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  32. def isURI[T](node: Rdf.Node): Boolean

  33. implicit def literalW(literal: Rdf.Literal): LiteralW[Rdf]

    Definition Classes
    LiteralSyntax
  34. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  35. implicit def nodeMatchW(nodeMatch: Rdf.NodeMatch): NodeMatchW[Rdf]

    Definition Classes
    NodeMatchSyntax
  36. implicit def nodeW(node: Rdf.Node): NodeW[Rdf]

    Definition Classes
    NodeSyntax
  37. final def notify(): Unit

    Definition Classes
    AnyRef
  38. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  39. lazy val rdf: RDFPrefix[Rdf]

    Definition Classes
    CommonPrefixes
  40. implicit def sparqlSolutionSyntax(solution: Rdf.Solution): SparqlSolutionSyntaxW[Rdf]

    Definition Classes
    SparqlSolutionSyntax
  41. implicit def sparqlSolutionsSyntax(solutions: Rdf.Solutions): SparqlSolutionsSyntaxW[Rdf]

    Definition Classes
    SparqlSolutionsSyntax
  42. implicit def stringW(s: String): StringW[Rdf]

    Definition Classes
    StringSyntax
  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  44. def toString(): String

    Definition Classes
    AnyRef → Any
  45. implicit def tripleAsTripleMatch(triple: Rdf.Triple): TripleMatch[Rdf]

    Definition Classes
    RDFDSL
  46. implicit def tripleMatchW(tripleMatch: TripleMatch[Rdf]): TripleMatchW[Rdf]

    Definition Classes
    TripleMatchSyntax
  47. implicit def tripleSyntax(triple: Rdf.Triple): TripleW[Rdf]

    Definition Classes
    TripleSyntax
  48. implicit def triplesAsTripleMatches(triples: Iterable[Rdf.Triple]): Iterable[TripleMatch[Rdf]]

    Definition Classes
    RDFDSL
  49. implicit def uriW(uri: Rdf.URI): URIW[Rdf]

    Definition Classes
    URISyntax
  50. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. lazy val xsd: XSDPrefix[Rdf]

    Definition Classes
    CommonPrefixes
  54. def [B](y: B): (RDFOps[Rdf], B)

    Implicit information
    This member is added by an implicit conversion from RDFOps[Rdf] to ArrowAssoc[RDFOps[Rdf]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from RDFSyntax[Rdf]

Inherited from SparqlSolutionsSyntax[Rdf]

Inherited from SparqlSolutionSyntax[Rdf]

Inherited from AnySyntax[Rdf]

Inherited from StringSyntax[Rdf]

Inherited from LiteralSyntax[Rdf]

Inherited from URISyntax[Rdf]

Inherited from NodeSyntax[Rdf]

Inherited from NodeMatchSyntax[Rdf]

Inherited from TripleSyntax[Rdf]

Inherited from TripleMatchSyntax[Rdf]

Inherited from GraphSyntax[Rdf]

Inherited from CommonPrefixes[Rdf]

Inherited from RDFDSL[Rdf]

Inherited from URIOps[Rdf]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from RDFOps[Rdf] to any2stringadd[RDFOps[Rdf]]

Inherited by implicit conversion StringFormat from RDFOps[Rdf] to StringFormat[RDFOps[Rdf]]

Inherited by implicit conversion Ensuring from RDFOps[Rdf] to Ensuring[RDFOps[Rdf]]

Inherited by implicit conversion ArrowAssoc from RDFOps[Rdf] to ArrowAssoc[RDFOps[Rdf]]

Ungrouped