Package | Description |
---|---|
org.apache.commons.rdf.api |
Commons RDF, a common library of RDF 1.1 concepts.
|
Modifier and Type | Method and Description |
---|---|
default Triple |
Quad.asTriple()
Adapt this Quad to a Triple.
|
Triple |
RDF.createTriple(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Create a triple.
|
default Triple |
RDFTermFactory.createTriple(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
default Stream<? extends Triple> |
Graph.getTriples()
Deprecated.
|
default Stream<? extends Triple> |
Graph.getTriples(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Deprecated.
|
default Iterable<Triple> |
Graph.iterate()
Gets an Iterable for iterating over all triples in the graph.
|
default Iterable<Triple> |
Graph.iterate(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Gets an Iterable for iterating over the triples in the graph that match
the pattern.
|
Stream<? extends Triple> |
Graph.stream()
Gets all triples contained by the graph.
|
Stream<? extends Triple> |
Graph.stream(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Gets all triples contained by the graph matched with the pattern.
|
Modifier and Type | Method and Description |
---|---|
void |
Graph.add(Triple triple)
Adds a triple to the graph, possibly mapping any of the components of the
Triple to those supported by this Graph.
|
boolean |
Graph.contains(Triple triple)
Checks if graph contains triple.
|
void |
Graph.remove(Triple triple)
Removes a concrete triple from the graph.
|
Copyright © 2015–2018 The Apache Software Foundation. All rights reserved.