Uses of Interface
org.apache.commons.rdf.api.Quad
-
Packages that use Quad 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.org.apache.commons.rdf.jsonldjava Integration with jsonld-javaorg.apache.commons.rdf.rdf4j Commons RDF integration with RDF4J.org.apache.commons.rdf.rdf4j.experimental Experimental Commons RDF RDF4J implementations.org.apache.commons.rdf.rdf4j.impl org.apache.commons.rdf.simple A simple in-memory implementation of the Commons RDF API.org.apache.commons.rdf.simple.experimental Experimental Commons RDF Simple implementations. -
-
Uses of Quad in org.apache.commons.rdf.api
Methods in org.apache.commons.rdf.api that return Quad Modifier and Type Method Description Quad
RDF. createQuad(BlankNodeOrIRI graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Create a quad.Methods in org.apache.commons.rdf.api that return types with arguments of type Quad Modifier and Type Method Description default java.lang.Iterable<Quad>
Dataset. iterate()
Get an Iterable for iterating over all quads in the dataset.default java.lang.Iterable<Quad>
Dataset. iterate(java.util.Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Get an Iterable for iterating over the quads in the dataset that match the pattern.java.util.stream.Stream<? extends Quad>
Dataset. stream()
Get all quads contained by the dataset.java.util.stream.Stream<? extends Quad>
Dataset. stream(java.util.Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Get all quads contained by the dataset matched with the pattern.Methods in org.apache.commons.rdf.api with parameters of type Quad Modifier and Type Method 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. -
Uses of Quad in org.apache.commons.rdf.experimental
Method parameters in org.apache.commons.rdf.experimental with type arguments of type Quad Modifier and Type Method Description RDFParser
RDFParser. target(java.util.function.Consumer<Quad> consumer)
Specify a consumer for parsed quads. -
Uses of Quad in org.apache.commons.rdf.jsonldjava
Subinterfaces of Quad in org.apache.commons.rdf.jsonldjava Modifier and Type Interface Description interface
JsonLdQuad
Classes in org.apache.commons.rdf.jsonldjava that implement Quad Modifier and Type Class Description (package private) class
JsonLdQuadImpl
Methods in org.apache.commons.rdf.jsonldjava that return Quad Modifier and Type Method Description (package private) Quad
JsonLdDatasetImpl. asTripleOrQuad(com.github.jsonldjava.core.RDFDataset.Quad jsonldQuad)
Methods in org.apache.commons.rdf.jsonldjava that return types with arguments of type Quad Modifier and Type Method Description java.util.stream.Stream<? extends Quad>
JsonLdDatasetImpl. stream(java.util.Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Methods in org.apache.commons.rdf.jsonldjava with parameters of type Quad Modifier and Type Method Description com.github.jsonldjava.core.RDFDataset.Quad
JsonLdRDF. asJsonLdQuad(Quad quad)
Adapt a Commons RDFQuad
as a JsonLdRDFDataset.Quad
.void
JsonLdDatasetImpl. remove(Quad q)
-
Uses of Quad in org.apache.commons.rdf.rdf4j
Subinterfaces of Quad in org.apache.commons.rdf.rdf4j Modifier and Type Interface Description interface
RDF4JQuad
Marker interface for RDF4J implementations of Quad.Methods in org.apache.commons.rdf.rdf4j that return Quad Modifier and Type Method Description Quad
RDF4J. createQuad(BlankNodeOrIRI graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Methods in org.apache.commons.rdf.rdf4j that return types with arguments of type Quad Modifier and Type Method Description ClosableIterable<Quad>
RDF4JDataset. iterate()
Get an Iterable for iterating over all quads in the dataset.ClosableIterable<Quad>
RDF4JDataset. iterate(java.util.Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Get an Iterable for iterating over the quads in the dataset that match the pattern. -
Uses of Quad in org.apache.commons.rdf.rdf4j.experimental
Fields in org.apache.commons.rdf.rdf4j.experimental with type parameters of type Quad Modifier and Type Field Description private java.util.function.Consumer<Quad>
RDF4JParser.AddToQuadConsumer. quadTarget
Constructor parameters in org.apache.commons.rdf.rdf4j.experimental with type arguments of type Quad Constructor Description AddToQuadConsumer(java.util.function.Consumer<Quad> quadTarget)
-
Uses of Quad in org.apache.commons.rdf.rdf4j.impl
Classes in org.apache.commons.rdf.rdf4j.impl that implement Quad Modifier and Type Class Description (package private) class
QuadImpl
Methods in org.apache.commons.rdf.rdf4j.impl that return types with arguments of type Quad Modifier and Type Method Description ClosableIterable<Quad>
RepositoryDatasetImpl. iterate()
ClosableIterable<Quad>
RepositoryDatasetImpl. iterate(java.util.Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Methods in org.apache.commons.rdf.rdf4j.impl with parameters of type Quad Modifier and Type Method Description void
RepositoryDatasetImpl. add(Quad tripleLike)
boolean
RepositoryDatasetImpl. contains(Quad tripleLike)
void
RepositoryDatasetImpl. remove(Quad tripleLike)
-
Uses of Quad in org.apache.commons.rdf.simple
Classes in org.apache.commons.rdf.simple that implement Quad Modifier and Type Class Description (package private) class
QuadImpl
A simple implementation of Quad.Fields in org.apache.commons.rdf.simple with type parameters of type Quad Modifier and Type Field Description private java.util.Set<Quad>
DatasetImpl. quads
Methods in org.apache.commons.rdf.simple that return Quad Modifier and Type Method Description Quad
SimpleRDF. createQuad(BlankNodeOrIRI graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Methods in org.apache.commons.rdf.simple that return types with arguments of type Quad Modifier and Type Method Description private java.util.stream.Stream<Quad>
DatasetImpl. getQuads(java.util.function.Predicate<Quad> filter)
java.util.stream.Stream<Quad>
DatasetImpl. stream()
java.util.stream.Stream<Quad>
DatasetImpl. stream(java.util.Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Methods in org.apache.commons.rdf.simple with parameters of type Quad Modifier and Type Method Description void
DatasetImpl. add(Quad quad)
boolean
DatasetImpl. contains(Quad quad)
void
DatasetImpl. remove(Quad quad)
Method parameters in org.apache.commons.rdf.simple with type arguments of type Quad Modifier and Type Method Description private java.util.stream.Stream<Quad>
DatasetImpl. getQuads(java.util.function.Predicate<Quad> filter)
-
Uses of Quad in org.apache.commons.rdf.simple.experimental
Fields in org.apache.commons.rdf.simple.experimental with type parameters of type Quad Modifier and Type Field Description private java.util.function.Consumer<Quad>
AbstractRDFParser. target
Methods in org.apache.commons.rdf.simple.experimental that return types with arguments of type Quad Modifier and Type Method Description java.util.function.Consumer<Quad>
AbstractRDFParser. getTarget()
Get the target to consume parsed Quads.Method parameters in org.apache.commons.rdf.simple.experimental with type arguments of type Quad Modifier and Type Method Description T
AbstractRDFParser. target(java.util.function.Consumer<Quad> consumer)
-