Package | Description |
---|---|
org.apache.commons.rdf.api |
Commons RDF, a common library of RDF 1.1 concepts.
|
org.apache.commons.rdf.experimental |
Experimental Commons RDF features.
|
Modifier and Type | Method and Description |
---|---|
Quad |
RDF.createQuad(BlankNodeOrIRI graphName,
BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Create a quad.
|
Modifier and Type | Method and Description |
---|---|
default Iterable<Quad> |
Dataset.iterate()
Get an Iterable for iterating over all quads in the dataset.
|
default Iterable<Quad> |
Dataset.iterate(Optional<BlankNodeOrIRI> graphName,
BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Get an Iterable for iterating over the quads in the dataset that match
the pattern.
|
Stream<? extends Quad> |
Dataset.stream()
Get all quads contained by the dataset.
|
Stream<? extends Quad> |
Dataset.stream(Optional<BlankNodeOrIRI> graphName,
BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Get all quads contained by the dataset matched with the pattern.
|
Modifier and Type | Method and Description |
---|---|
void |
Dataset.add(Quad quad)
Add a quad to the dataset, possibly mapping any of the components of the
Quad to those supported by this dataset.
|
boolean |
Dataset.contains(Quad quad)
Check if dataset contains quad.
|
void |
Dataset.remove(Quad quad)
Remove a concrete quad from the dataset.
|
Modifier and Type | Method and Description |
---|---|
RDFParser |
RDFParser.target(Consumer<Quad> consumer)
Specify a consumer for parsed quads.
|
Copyright © 2015–2018 The Apache Software Foundation. All rights reserved.