package data
- Alphabetic
- Public
- All
Type Members
-
abstract
class
AbstractRDFGraph[Rdf <: RDF, D, G <: AbstractRDFGraph[Rdf, D, G]] extends AnyRef
A data structure that comprises a collection of triples.
A data structure that comprises a collection of triples. Note, due to the implementation of the Spark datastructures, this doesn't necessarily mean to be free of duplicates which is why a
distinct
operation is provided. -
trait
Jena extends RDF
Defines the types related to the RDF datamodel in the Apache Jena framework.
Defines the types related to the RDF datamodel in the Apache Jena framework.
This class is inspired by the Banana-RDF project.
- class JenaOps extends RDFOps[Jena]
- trait JenaRDFTripleLike extends TripleOps[Jena]
-
trait
RDF extends AnyRef
Defines the types related to the RDF datamodel.
Defines the types related to the RDF datamodel.
This class is inspired by the Banana-RDF project.
- trait RDFOps[Rdf <: RDF] extends AnyRef
-
case class
RDFTriple(s: String, p: String, o: String) extends Product3[String, String, String] with Product with Serializable
An RDF triple
(s p o)
.An RDF triple
(s p o)
.- s
the subject
- p
the predicate
- o
the object
-
case class
RDFTuple(s: String, o: String) extends Product2[String, String] with Product with Serializable
An RDF tuple
(s o)
, i.e.An RDF tuple
(s o)
, i.e. only subject and object are represented.- s
the subject
- o
the object
- class RDFVocab[Rdf <: RDF] extends AnyRef
-
class
SQLSchema extends AnyRef
The SQL schema used for an RDF graph.
- class SimpleRDF extends RDF
- class SimpleRDFOps extends RDFOps[SimpleRDF]
- trait TripleOps[Rdf <: RDF] extends AnyRef