Uses of Interface
org.eclipse.rdf4j.model.TripleTerm
Packages that use TripleTerm
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).
MemoryStore-specific implementations of the core RDF model objects.
-
Uses of TripleTerm in org.eclipse.rdf4j.http.protocol.transaction
Methods in org.eclipse.rdf4j.http.protocol.transaction with parameters of type TripleTermModifier and TypeMethodDescriptionprotected voidTransactionWriter.serialize(TripleTerm tripleTerm, XMLWriter xmlWriter) -
Uses of TripleTerm in org.eclipse.rdf4j.model
Methods in org.eclipse.rdf4j.model that return TripleTermModifier and TypeMethodDescriptiondefault TripleTermValueFactory.createTripleTerm(Resource subject, IRI predicate, Value object) Creates a new triple term with the supplied subject, predicate and object. -
Uses of TripleTerm in org.eclipse.rdf4j.model.base
Classes in org.eclipse.rdf4j.model.base that implement TripleTermMethods in org.eclipse.rdf4j.model.base that return TripleTermModifier and TypeMethodDescriptionAbstractValueFactory.createTripleTerm(Resource subject, IRI predicate, Value object) -
Uses of TripleTerm in org.eclipse.rdf4j.model.impl
Classes in org.eclipse.rdf4j.model.impl that implement TripleTermModifier and TypeClassDescriptionclassA simple default implementation of theTripleTerminterface.Methods in org.eclipse.rdf4j.model.impl that return TripleTermModifier and TypeMethodDescriptionSimpleValueFactory.createTripleTerm(Resource subject, IRI predicate, Value object) ValidatingValueFactory.createTripleTerm(Resource subject, IRI predicate, Value object) -
Uses of TripleTerm in org.eclipse.rdf4j.model.util
Fields in org.eclipse.rdf4j.model.util with type parameters of type TripleTermModifier and TypeFieldDescriptionstatic Function<TripleTerm, Resource> Statements.TRIPLE_BNODE_MAPPERMethods in org.eclipse.rdf4j.model.util that return TripleTermModifier and TypeMethodDescriptionstatic TripleTermDeprecated.static TripleTermStatements.toTriple(ValueFactory vf, Statement statement) Deprecated.UseValues.tripleTerm(ValueFactory, Statement)insteadstatic TripleTermValues.tripleTerm(Resource subject, IRI predicate, Value object) Creates a newembedded triplewith the supplied subject, predicate, and object.static TripleTermValues.tripleTerm(Statement statement) Creates a newembedded tripleusing the subject, predicate and object from the suppliedStatement.static TripleTermValues.tripleTerm(ValueFactory vf, Resource subject, IRI predicate, Value object) Creates a newembedded triplewith the supplied subject, predicate, and object.static TripleTermValues.tripleTerm(ValueFactory vf, Statement statement) Creates a newembedded tripleusing the subject, predicate and object from the suppliedStatement.Methods in org.eclipse.rdf4j.model.util with parameters of type TripleTermModifier and TypeMethodDescriptionstatic StatementStatements.statement(TripleTerm tripleTerm) Create aStatementfrom the suppliedRDF 1.2 tripleTermstatic StatementStatements.statement(TripleTerm tripleTerm, Resource context) Create aStatementfrom the suppliedRDF 1.2 tripleTermand context.static StatementStatements.statement(ValueFactory vf, TripleTerm tripleTerm, Resource context) Create aStatementfrom the suppliedRDF 1.2 tripleTermand context.static StatementStatements.toStatement(TripleTerm tripleTerm) Deprecated.UseStatements.statement(TripleTerm)insteadstatic StatementStatements.toStatement(TripleTerm tripleTerm, Resource context) Deprecated.since 3.7.0 - useStatements.statement(TripleTerm, Resource)insteadstatic StatementStatements.toStatement(ValueFactory vf, TripleTerm tripleTerm, Resource context) Deprecated. -
Uses of TripleTerm in org.eclipse.rdf4j.query.algebra.evaluation
Methods in org.eclipse.rdf4j.query.algebra.evaluation that return types with arguments of type TripleTermModifier and TypeMethodDescriptionCloseableIteration<? extends TripleTerm> NativeTripleTermSource.getTripleTerms(Resource subj, IRI pred, Value obj) Gets all TripleTerm nodes that have a specific subject, predicate and/or object. -
Uses of TripleTerm in org.eclipse.rdf4j.query.resultio.sparqljson
Methods in org.eclipse.rdf4j.query.resultio.sparqljson that return TripleTermModifier and TypeMethodDescriptionprotected TripleTermAbstractSPARQLJSONParser.parseTripleTermValue(tools.jackson.core.JsonParser jp, String fieldName) protected TripleTermSPARQLResultsJSONParser.parseTripleTermValue(tools.jackson.core.JsonParser jp, String fieldName) -
Uses of TripleTerm in org.eclipse.rdf4j.query.resultio.text.csv
Methods in org.eclipse.rdf4j.query.resultio.text.csv with parameters of type TripleTermModifier and TypeMethodDescriptionprotected voidSPARQLResultsCSVWriter.writeTripleTerm(TripleTerm tt) Handles cases where a literal is present at object position, which requires outer triple term to be encapsulation in "invalid input: '<'invalid input: '<'(...)>>" and literals or escaped URIs to have double quotes. -
Uses of TripleTerm in org.eclipse.rdf4j.rio.helpers
Methods in org.eclipse.rdf4j.rio.helpers that return TripleTermModifier and TypeMethodDescriptionNTriplesUtil.TripleMatch.getTripleTerm()static TripleTermNTriplesUtil.parseTriple(String nTriplesTriple, ValueFactory valueFactory) Parses a tripleterm, creates an object for it using the supplied ValueFactory and returns this object.static TripleTermNTriplesUtil.parseTriple(String nTriplesTriple, ValueFactory valueFactory, Function<String, Value> parseNumberFunction) Parses a tripleterm, creates an object for it using the supplied ValueFactory and number parse approach, and returns this object.Methods in org.eclipse.rdf4j.rio.helpers with parameters of type TripleTermModifier and TypeMethodDescriptionstatic voidNTriplesUtil.append(TripleTerm tripleTerm, Appendable appendable) Appends the N-Triples (non-standard) representation of the givenTripleTermto the givenAppendable.static StringNTriplesUtil.toNTriplesString(TripleTerm tripleTerm) Creates an N-Triples string for the supplied tripleTerm.Constructors in org.eclipse.rdf4j.rio.helpers with parameters of type TripleTerm -
Uses of TripleTerm in org.eclipse.rdf4j.rio.turtle
Fields in org.eclipse.rdf4j.rio.turtle declared as TripleTermMethods in org.eclipse.rdf4j.rio.turtle that return TripleTermModifier and TypeMethodDescriptionprotected TripleTermTurtleParser.parseTripleTerm()Parser an RDF-1.2 triple term and returns it.Methods in org.eclipse.rdf4j.rio.turtle with parameters of type TripleTermModifier and TypeMethodDescriptionprotected voidTurtleWriter.writeTriple(TripleTerm tripleTerm, boolean canShorten) -
Uses of TripleTerm in org.eclipse.rdf4j.sail.base
Methods in org.eclipse.rdf4j.sail.base that return types with arguments of type TripleTermModifier and TypeMethodDescriptiondefault CloseableIteration<? extends TripleTerm> SailDataset.getTriples(Resource subj, IRI pred, Value obj) Gets all RDF 1.2 triples that have a specific subject, predicate and/or object.CloseableIteration<? extends TripleTerm> SailDatasetTripleTermSource.getTripleTerms(Resource subj, IRI pred, Value obj) -
Uses of TripleTerm in org.eclipse.rdf4j.sail.memory.model
Classes in org.eclipse.rdf4j.sail.memory.model that implement TripleTermMethods in org.eclipse.rdf4j.sail.memory.model that return TripleTermModifier and TypeMethodDescriptionMemValueFactory.createTripleTerm(Resource subject, IRI predicate, Value object) Methods in org.eclipse.rdf4j.sail.memory.model with parameters of type TripleTermModifier and TypeMethodDescriptionMemValueFactory.getOrCreateMemTripleTerm(TripleTerm tripleTerm) SeeMemValueFactory.getOrCreateMemValue(Value)for description.
Values.tripleTerm(Statement)instead