Uses of Interface
org.apache.commons.rdf.api.Triple
-
Packages that use Triple Package Description org.apache.commons.rdf.api Commons RDF, a common library of RDF 1.1 concepts.org.apache.commons.rdf.jsonldjava Integration with jsonld-javaorg.apache.commons.rdf.rdf4j Commons RDF integration with RDF4J.org.apache.commons.rdf.rdf4j.impl org.apache.commons.rdf.simple A simple in-memory implementation of the Commons RDF API. -
-
Uses of Triple in org.apache.commons.rdf.api
Methods in org.apache.commons.rdf.api that return Triple Modifier and Type Method 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.Methods in org.apache.commons.rdf.api that return types with arguments of type Triple Modifier and Type Method Description default java.util.stream.Stream<? extends Triple>
Graph. getTriples()
Deprecated.default java.util.stream.Stream<? extends Triple>
Graph. getTriples(BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Deprecated.default java.lang.Iterable<Triple>
Graph. iterate()
Gets an Iterable for iterating over all triples in the graph.default java.lang.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.java.util.stream.Stream<? extends Triple>
Graph. stream()
Gets all triples contained by the graph.java.util.stream.Stream<? extends Triple>
Graph. stream(BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Gets all triples contained by the graph matched with the pattern.Methods in org.apache.commons.rdf.api with parameters of type Triple Modifier and Type Method 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. -
Uses of Triple in org.apache.commons.rdf.jsonldjava
Subinterfaces of Triple in org.apache.commons.rdf.jsonldjava Modifier and Type Interface Description interface
JsonLdTriple
Classes in org.apache.commons.rdf.jsonldjava that implement Triple Modifier and Type Class Description (package private) class
JsonLdTripleImpl
Methods in org.apache.commons.rdf.jsonldjava that return types with arguments of type Triple Modifier and Type Method Description java.util.stream.Stream<? extends Triple>
JsonLdUnionGraphImpl. stream()
Methods in org.apache.commons.rdf.jsonldjava with parameters of type Triple Modifier and Type Method Description void
JsonLdGraphImpl. add(Triple t)
com.github.jsonldjava.core.RDFDataset.Quad
JsonLdRDF. asJsonLdQuad(Triple triple)
Adapt a Commons RDFTriple
as a JsonLdRDFDataset.Quad
.boolean
JsonLdGraphImpl. contains(Triple t)
void
JsonLdGraphImpl. remove(Triple t)
void
JsonLdUnionGraphImpl. remove(Triple t)
-
Uses of Triple in org.apache.commons.rdf.rdf4j
Subinterfaces of Triple in org.apache.commons.rdf.rdf4j Modifier and Type Interface Description interface
RDF4JTriple
Marker interface for RDF4J implementations of Triple.Methods in org.apache.commons.rdf.rdf4j that return types with arguments of type Triple Modifier and Type Method Description ClosableIterable<Triple>
RDF4JGraph. iterate()
Gets an Iterable for iterating over all triples in the graph.ClosableIterable<Triple>
RDF4JGraph. iterate(BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Gets an Iterable for iterating over the triples in the graph that match the pattern. -
Uses of Triple in org.apache.commons.rdf.rdf4j.impl
Classes in org.apache.commons.rdf.rdf4j.impl that implement Triple Modifier and Type Class Description (package private) class
TripleImpl
Methods in org.apache.commons.rdf.rdf4j.impl that return Triple Modifier and Type Method Description Triple
QuadImpl. asTriple()
Methods in org.apache.commons.rdf.rdf4j.impl that return types with arguments of type Triple Modifier and Type Method Description ClosableIterable<Triple>
ModelGraphImpl. iterate()
ClosableIterable<Triple>
ModelGraphImpl. iterate(BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
ClosableIterable<Triple>
RepositoryGraphImpl. iterate()
ClosableIterable<Triple>
RepositoryGraphImpl. iterate(BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Methods in org.apache.commons.rdf.rdf4j.impl with parameters of type Triple Modifier and Type Method Description void
ModelGraphImpl. add(Triple triple)
void
RepositoryGraphImpl. add(Triple tripleLike)
boolean
ModelGraphImpl. contains(Triple triple)
boolean
RepositoryGraphImpl. contains(Triple tripleLike)
void
ModelGraphImpl. remove(Triple triple)
void
RepositoryGraphImpl. remove(Triple tripleLike)
-
Uses of Triple in org.apache.commons.rdf.simple
Classes in org.apache.commons.rdf.simple that implement Triple Modifier and Type Class Description (package private) class
TripleImpl
A simple implementation of Triple.Fields in org.apache.commons.rdf.simple with type parameters of type Triple Modifier and Type Field Description private java.util.Set<Triple>
GraphImpl. triples
Methods in org.apache.commons.rdf.simple that return Triple Modifier and Type Method Description Triple
QuadImpl. asTriple()
Triple
SimpleRDF. createTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Triple
SimpleRDFTermFactory. createTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Deprecated.private Triple
GraphImpl. internallyMap(Triple triple)
Methods in org.apache.commons.rdf.simple that return types with arguments of type Triple Modifier and Type Method Description private java.util.stream.Stream<Triple>
GraphImpl. getTriples(java.util.function.Predicate<Triple> filter)
java.util.stream.Stream<? extends Triple>
DatasetGraphView. stream()
java.util.stream.Stream<? extends Triple>
DatasetGraphView. stream(BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
java.util.stream.Stream<Triple>
GraphImpl. stream()
java.util.stream.Stream<Triple>
GraphImpl. stream(BlankNodeOrIRI subject, IRI predicate, RDFTerm object)
Methods in org.apache.commons.rdf.simple with parameters of type Triple Modifier and Type Method Description void
DatasetGraphView. add(Triple triple)
void
GraphImpl. add(Triple triple)
boolean
DatasetGraphView. contains(Triple triple)
boolean
GraphImpl. contains(Triple triple)
private Triple
GraphImpl. internallyMap(Triple triple)
void
DatasetGraphView. remove(Triple triple)
void
GraphImpl. remove(Triple triple)
Method parameters in org.apache.commons.rdf.simple with type arguments of type Triple Modifier and Type Method Description private java.util.stream.Stream<Triple>
GraphImpl. getTriples(java.util.function.Predicate<Triple> filter)
-