org.w3.banana

RDFOps

Related Docs: object RDFOps | package banana

trait RDFOps[Rdf <: RDF] extends MGraphOps[Rdf] with 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. DieselSyntax
  4. SparqlSolutionsSyntax
  5. SparqlSolutionSyntax
  6. AnySyntax
  7. StringSyntax
  8. LiteralSyntax
  9. URISyntax
  10. NodeSyntax
  11. NodeMatchSyntax
  12. TripleSyntax
  13. TripleMatchSyntax
  14. MGraphSyntax
  15. GraphSyntax
  16. CommonPrefixes
  17. RDFDSL
  18. URIOps
  19. MGraphOps
  20. AnyRef
  21. 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 addTriple(mgraph: Rdf.MGraph, triple: Rdf.Triple): mgraph.type

    Definition Classes
    MGraphOps
  3. abstract def appendSegment(uri: Rdf.URI, segment: String): Rdf.URI

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

  5. abstract def emptyGraph: Rdf.Graph

  6. abstract def exists(mgraph: Rdf.MGraph, triple: Rdf.Triple): Boolean

    Definition Classes
    MGraphOps
  7. abstract def find(graph: Rdf.Graph, subject: Rdf.NodeMatch, predicate: Rdf.NodeMatch, objectt: Rdf.NodeMatch): Iterator[Rdf.Triple]

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

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

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

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

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

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

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

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

    returns the fragment part of uri

    returns the fragment part of uri

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

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

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

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

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

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

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

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

  24. abstract def makeEmptyMGraph(): Rdf.MGraph

    Definition Classes
    MGraphOps
  25. abstract def makeGraph(it: Iterable[Rdf.Triple]): Rdf.Graph

  26. abstract def makeIGraph(mgraph: Rdf.MGraph): Rdf.Graph

    Definition Classes
    MGraphOps
  27. abstract def makeLang(s: String): Rdf.Lang

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

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

  30. abstract def makeMGraph(graph: Rdf.Graph): Rdf.MGraph

    Definition Classes
    MGraphOps
  31. abstract def makeTriple(s: Rdf.Node, p: Rdf.URI, o: Rdf.Node): Rdf.Triple

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

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

    Definition Classes
    URIOps
  34. abstract def removeTriple(mgraph: Rdf.MGraph, triple: Rdf.Triple): mgraph.type

    Definition Classes
    MGraphOps
  35. abstract def resolve(uri: Rdf.URI, other: Rdf.URI): Rdf.URI

    Definition Classes
    URIOps
  36. abstract def sizeMGraph(mgraph: Rdf.MGraph): Int

    Definition Classes
    MGraphOps
  37. implicit abstract def toConcreteNodeMatch(node: Rdf.Node): Rdf.NodeMatch

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

  39. 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
  40. 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. final def addTriples(mgraph: Rdf.MGraph, triples: TraversableOnce[Rdf.Triple]): mgraph.type

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

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

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

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

    Definition Classes
    RDFDSL
  17. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. 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
  19. 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
  20. 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
  21. 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
  22. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. 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()
  26. final def getClass(): Class[_]

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

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

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

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

    Definition Classes
    GraphSyntax
  31. def hashCode(): Int

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

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

    Definition Classes
    LiteralSyntax
  34. implicit def mgraphW(mgraph: Rdf.MGraph): MGraphW[Rdf]

    Definition Classes
    MGraphSyntax
  35. final def ne(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    CommonPrefixes
  41. final def removeTriples(mgraph: Rdf.MGraph, triples: TraversableOnce[Rdf.Triple]): mgraph.type

    Definition Classes
    MGraphOps
  42. implicit def sparqlSolutionSyntax(solution: Rdf.Solution): SparqlSolutionSyntaxW[Rdf]

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

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

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

    Definition Classes
    AnyRef
  46. implicit def toPointedGraphW[Rdf <: RDF](pointed: PointedGraph[Rdf]): PointedGraphW[Rdf]

    Definition Classes
    DieselSyntax
  47. implicit def toPointedGraphW(node: Rdf.Node)(implicit ops: RDFOps[Rdf]): PointedGraphW[Rdf]

    Definition Classes
    DieselSyntax
  48. def toString(): String

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

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

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

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

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

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

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

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

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

    Definition Classes
    CommonPrefixes
  58. 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 DieselSyntax[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 MGraphSyntax[Rdf]

Inherited from GraphSyntax[Rdf]

Inherited from CommonPrefixes[Rdf]

Inherited from RDFDSL[Rdf]

Inherited from URIOps[Rdf]

Inherited from MGraphOps[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