Package | Description |
---|---|
org.apache.commons.rdf.api |
Commons RDF, a common library of RDF 1.1 concepts.
|
org.apache.commons.rdf.api.io | |
org.apache.commons.rdf.experimental |
Experimental Commons RDF features.
|
Modifier and Type | Method and Description |
---|---|
IRI |
RDF.createIRI(String iri)
Create an IRI from a (possibly escaped) String.
|
default IRI |
RDFTermFactory.createIRI(String iri)
Deprecated.
|
IRI |
Literal.getDatatype()
The IRI identifying the datatype that determines how the lexical form
maps to a literal value.
|
IRI |
Triple.getPredicate()
The predicate
IRI of this triple. |
IRI |
Quad.getPredicate()
The predicate
IRI of this quad. |
IRI |
RDFSyntax.iri()
Return the
IRI that identifies the RDF syntax. |
Modifier and Type | Method and Description |
---|---|
void |
Dataset.add(BlankNodeOrIRI graphName,
BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Add a quad to the dataset, possibly mapping any of the components to
those supported by this dataset.
|
void |
Graph.add(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Adds a triple to the graph, possibly mapping any of the components to
those supported by this Graph.
|
boolean |
Graph.contains(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Checks if graph contains a pattern of triples.
|
boolean |
Dataset.contains(Optional<BlankNodeOrIRI> graphName,
BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Check if dataset contains a pattern of quads.
|
Literal |
RDF.createLiteral(String lexicalForm,
IRI dataType)
Create a literal with the specified data type.
|
default Literal |
RDFTermFactory.createLiteral(String lexicalForm,
IRI dataType)
Deprecated.
|
Quad |
RDF.createQuad(BlankNodeOrIRI graphName,
BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Create a quad.
|
Triple |
RDF.createTriple(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Create a triple.
|
default Triple |
RDFTermFactory.createTriple(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Deprecated.
|
default Stream<? extends Triple> |
Graph.getTriples(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Deprecated.
|
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.
|
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.
|
void |
Graph.remove(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Removes a concrete pattern of triples from the graph.
|
void |
Dataset.remove(Optional<BlankNodeOrIRI> graphName,
BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Remove a concrete pattern of quads from the default graph of the dataset.
|
Stream<? extends Triple> |
Graph.stream(BlankNodeOrIRI subject,
IRI predicate,
RDFTerm object)
Gets all triples contained by the graph matched with the pattern.
|
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 |
---|---|
Optional<IRI> |
ParserConfig.base() |
static ParserSource<IRI> |
ParserSource.fromIRI(IRI iri) |
Optional<IRI> |
ParserSource.iri() |
Modifier and Type | Method and Description |
---|---|
ParserConfigBuilder |
ParserConfigBuilder.base(IRI iri) |
static ParserSource<IRI> |
ParserSource.fromIRI(IRI iri) |
Sync |
ParserConfigBuilder.source(IRI iri) |
static ParserTarget<Graph> |
ParserTarget.toGraph(Graph graph,
IRI matchGraphName) |
ParserConfig |
ParserConfig.withBase(IRI base) |
Modifier and Type | Method and Description |
---|---|
RDFParser |
RDFParser.base(IRI base)
Specify a base IRI to use for parsing any relative IRI references.
|
RDFParser |
RDFParser.source(IRI iri)
Specify an absolute source
IRI to retrieve and parse. |
Copyright © 2015–2018 The Apache Software Foundation. All rights reserved.