Uses of Interface
org.eclipse.rdf4j.model.Triple
Package
Description
The RDF Model API
Abstract base classes for RDF Model API interfaces.
Default implementations of the RDF model interfaces
Helper classes for working with RDF models.
A writer for the
SPARQL Query Results JSON Format
Provides helpers classes for Rio.
Parser/writer for the Turtle format.
Base functionality for Sail implementations that require multi-versioned concurrency control (MVCC).
-
Uses of Triple in org.eclipse.rdf4j.http.protocol.transaction
-
Uses of Triple in org.eclipse.rdf4j.model
Modifier and TypeMethodDescriptiondefault Triple
ValueFactory.createTriple
(Resource subject, IRI predicate, Value object) Creates a new RDF-star triple with the supplied subject, predicate and object. -
Uses of Triple in org.eclipse.rdf4j.model.base
Modifier and TypeMethodDescriptionAbstractValueFactory.createTriple
(Resource subject, IRI predicate, Value object) -
Uses of Triple in org.eclipse.rdf4j.model.impl
Modifier and TypeMethodDescriptionSimpleValueFactory.createTriple
(Resource subject, IRI predicate, Value object) ValidatingValueFactory.createTriple
(Resource subject, IRI predicate, Value object) -
Uses of Triple in org.eclipse.rdf4j.model.util
Modifier and TypeMethodDescriptionstatic Triple
Deprecated.static Triple
Statements.toTriple
(ValueFactory vf, Statement statement) Deprecated.since 3.5.0 - useValues.triple(ValueFactory, Statement)
insteadstatic Triple
Creates a newRDF-star embedded triple
with the supplied subject, predicate, and object.static Triple
Creates a newRDF-star embedded triple
using the subject, predicate and object from the suppliedStatement
.static Triple
Values.triple
(ValueFactory vf, Resource subject, IRI predicate, Value object) Creates a newRDF-star embedded triple
with the supplied subject, predicate, and object.static Triple
Values.triple
(ValueFactory vf, Statement statement) Creates a newRDF-star embedded triple
using the subject, predicate and object from the suppliedStatement
.Modifier and TypeMethodDescriptionstatic Statement
Create aStatement
from the supplied { @link Triple RDF-star triple}static Statement
Create aStatement
from the supplied { @link Triple RDF-star triple} and context.static Statement
Statements.statement
(ValueFactory vf, Triple triple, Resource context) Create aStatement
from the supplied { @link Triple RDF-star triple} and context.static Statement
Statements.toStatement
(Triple triple) Deprecated.UseStatements.statement(Triple)
insteadstatic Statement
Statements.toStatement
(Triple triple, Resource context) Deprecated.since 3.7.0 - useStatements.statement(Triple, Resource)
insteadstatic Statement
Statements.toStatement
(ValueFactory vf, Triple triple, Resource context) Deprecated.Modifier and TypeMethodDescriptionstatic void
Statements.convertRDFStarToReification
(ValueFactory vf, Function<Triple, Resource> reifiedIdMapper, Statement st, Consumer<Statement> consumer) Converts the supplied RDF-star statement to RDF reification statements, and sends the resultant statements to the supplied consumer. -
Uses of Triple in org.eclipse.rdf4j.query.algebra.evaluation
Modifier and TypeMethodDescriptionCloseableIteration<? extends Triple,
QueryEvaluationException> RDFStarTripleSource.getRdfStarTriples
(Resource subj, IRI pred, Value obj) Gets all Triple nodes that have a specific subject, predicate and/or object. -
Uses of Triple in org.eclipse.rdf4j.query.resultio.sparqljson
Modifier and TypeMethodDescriptionprotected Triple
AbstractSPARQLJSONParser.parseTripleValue
(com.fasterxml.jackson.core.JsonParser jp, String fieldName) protected Triple
SPARQLResultsJSONParser.parseTripleValue
(com.fasterxml.jackson.core.JsonParser jp, String fieldName) -
Uses of Triple in org.eclipse.rdf4j.rio.helpers
Modifier and TypeMethodDescriptionstatic Triple
NTriplesUtil.parseTriple
(String nTriplesTriple, ValueFactory valueFactory) Parses an RDF-star triple (non-standard N-Triples), creates an object for it using the supplied ValueFactory and returns this object.Modifier and TypeMethodDescriptionstatic void
NTriplesUtil.append
(Triple triple, Appendable appendable) Appends the N-Triples (non-standard) representation of the givenTriple
to the givenAppendable
.static String
NTriplesUtil.toNTriplesString
(Triple triple) Creates an N-Triples (non-standard) string for the supplied RDF-star triple. -
Uses of Triple in org.eclipse.rdf4j.rio.trigstar
Modifier and TypeMethodDescriptionprotected void
TriGStarWriter.writeTriple
(Triple triple, boolean canShorten) -
Uses of Triple in org.eclipse.rdf4j.rio.turtle
Modifier and TypeMethodDescriptionprotected Triple
TurtleParser.parseTripleValue()
Parser an RDF-star triple value and returns it.Modifier and TypeMethodDescriptionprotected void
TurtleWriter.writeTriple
(Triple triple, boolean canShorten) protected void
TurtleWriter.writeTripleRDFStar
(Triple triple, boolean canShorten) -
Uses of Triple in org.eclipse.rdf4j.rio.turtlestar
Modifier and TypeMethodDescriptionprotected void
TurtleStarWriter.writeTriple
(Triple triple, boolean canShorten) -
Uses of Triple in org.eclipse.rdf4j.sail.base
Modifier and TypeMethodDescriptiondefault CloseableIteration<? extends Triple,
SailException> SailDataset.getTriples
(Resource subj, IRI pred, Value obj) Gets all RDF-star triples that have a specific subject, predicate and/or object. -
Uses of Triple in org.eclipse.rdf4j.sail.memory.model
Values.triple(Statement)
instead