org.openrdf.model |
RDF model interfaces.
The RDF model interfaces are organized in the following hierarchy:
Value Statement
/ \
/ \
Resource Literal
/ \
/ \
URI BNode
|
Java Source File Name | Type | Comment |
BNode.java | Interface | A blank node (aka bnode, aka anonymous node). |
Graph.java | Interface | An RDF graph, represented as a collection of
Statement s. |
Literal.java | Interface | An RDF literal consisting of a label (the value) and optionally a language
tag or a datatype (but not both). |
Namespace.java | Interface | A namespace, consisting of a namespace name and a prefix that has been
assigned to it. |
Resource.java | Interface | The supertype of all RDF resources (URIs and blank nodes). |
Statement.java | Interface | An RDF statement, with optional associated context. |
URI.java | Interface | A URI. |
Value.java | Interface | The supertype of all RDF model objects (URIs, blank nodes and literals). |
ValueFactory.java | Interface | A factory for creating URIs, blank nodes, literals and statements. |