Uses of Interface
org.eclipse.rdf4j.model.URI
-
Packages that use URI Package Description org.eclipse.rdf4j.model The RDF Model APIorg.eclipse.rdf4j.model.base Abstract base classes for RDF Model API interfaces.org.eclipse.rdf4j.model.impl Default implementations of the RDF model interfacesorg.eclipse.rdf4j.repository The Repository API: the main API for accessing rdf databases and SPARQL endpoints.org.eclipse.rdf4j.sail RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an SPI for RDF databases.org.eclipse.rdf4j.sail.memory.model org.eclipse.rdf4j.sail.nativerdf.model org.eclipse.rdf4j.spin See discussion at https://github.com/eclipse/rdf4j/issues/1262org.eclipse.rdf4j.spin.function Core functions required for SPIN. -
-
Uses of URI in org.eclipse.rdf4j.model
Subinterfaces of URI in org.eclipse.rdf4j.model Modifier and Type Interface Description interface
IRI
An Internationalized Resource Identifier (IRI).Methods in org.eclipse.rdf4j.model that return URI Modifier and Type Method Description default URI
ValueFactory. createURI(String uri)
Deprecated.Use {ValueFactory.createIRI(String)
instead.default URI
ValueFactory. createURI(String namespace, String localName)
Deprecated.UseValueFactory.createIRI(String, String)
instead.Methods in org.eclipse.rdf4j.model with parameters of type URI Modifier and Type Method Description default boolean
Model. add(Resource subj, URI pred, Value obj, Resource... contexts)
Deprecated.since 2.0.default boolean
Model. contains(Resource subj, URI pred, Value obj, Resource... contexts)
Deprecated.since 2.0.default Literal
ValueFactory. createLiteral(String label, URI datatype)
Deprecated.UseValueFactory.createLiteral(String, IRI)
instead.default Statement
ValueFactory. createStatement(Resource subject, URI predicate, Value object)
Deprecated.UseValueFactory.createStatement(Resource, IRI, Value)
instead.default Statement
ValueFactory. createStatement(Resource subject, URI predicate, Value object, Resource context)
Deprecated.default Model
Model. filter(Resource subj, URI pred, Value obj, Resource... contexts)
Deprecated.default boolean
Model. remove(Resource subj, URI pred, Value obj, Resource... contexts)
Deprecated.since 2.0. -
Uses of URI in org.eclipse.rdf4j.model.base
Classes in org.eclipse.rdf4j.model.base that implement URI Modifier and Type Class Description class
AbstractIRI
Base class forIRI
, offering common functionality. -
Uses of URI in org.eclipse.rdf4j.model.impl
Classes in org.eclipse.rdf4j.model.impl that implement URI Modifier and Type Class Description class
SimpleIRI
The default implementation of theIRI
interface.class
URIImpl
Deprecated.since 2.0.Methods in org.eclipse.rdf4j.model.impl that return URI Modifier and Type Method Description URI
ValidatingValueFactory. createURI(String uri)
URI
ValidatingValueFactory. createURI(String namespace, String localName)
Methods in org.eclipse.rdf4j.model.impl with parameters of type URI Modifier and Type Method Description Literal
ValidatingValueFactory. createLiteral(String label, URI datatype)
Statement
ValidatingValueFactory. createStatement(Resource subject, URI predicate, Value object)
Statement
ValidatingValueFactory. createStatement(Resource subject, URI predicate, Value object, Resource context)
Constructors in org.eclipse.rdf4j.model.impl with parameters of type URI Constructor Description ContextStatementImpl(Resource subject, URI predicate, Value object, Resource context)
Deprecated.since 2.0.LiteralImpl(String label, URI datatype)
Deprecated.since 2.0.StatementImpl(Resource subject, URI predicate, Value object)
Deprecated.since 2.0. -
Uses of URI in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository with parameters of type URI Modifier and Type Method Description default void
RepositoryConnection. add(Resource subject, URI predicate, Value object, Resource... contexts)
Deprecated.since 2.0.default RepositoryResult<Statement>
RepositoryConnection. getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
Deprecated.since 2.0.default boolean
RepositoryConnection. hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
Deprecated.since 2.0.default void
RepositoryConnection. remove(Resource subject, URI predicate, Value object, Resource... contexts)
Deprecated.since 2.0. -
Uses of URI in org.eclipse.rdf4j.sail
Methods in org.eclipse.rdf4j.sail with parameters of type URI Modifier and Type Method Description default void
SailConnection. addStatement(Resource subj, URI pred, Value obj, Resource... contexts)
Deprecated.since 4.0.default void
SailConnection. addStatement(UpdateContext op, Resource subj, URI pred, Value obj, Resource... contexts)
Deprecated.since 4.0.default CloseableIteration<? extends Statement,SailException>
SailConnection. getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
Deprecated.since 4.0.default void
SailConnection. removeStatement(UpdateContext op, Resource subj, URI pred, Value obj, Resource... contexts)
Deprecated.since 4.0.default void
SailConnection. removeStatements(Resource subj, URI pred, Value obj, Resource... contexts)
Deprecated.since 4.0. -
Uses of URI in org.eclipse.rdf4j.sail.memory.model
Classes in org.eclipse.rdf4j.sail.memory.model that implement URI Modifier and Type Class Description class
MemIRI
A MemoryStore-specific implementation of URI that stores separated namespace and local name information to enable reuse of namespace String objects (reducing memory usage) and that gives it node properties. -
Uses of URI in org.eclipse.rdf4j.sail.nativerdf.model
Classes in org.eclipse.rdf4j.sail.nativerdf.model that implement URI Modifier and Type Class Description class
NativeIRI
-
Uses of URI in org.eclipse.rdf4j.spin
Methods in org.eclipse.rdf4j.spin with parameters of type URI Modifier and Type Method Description static ConstraintViolationLevel
ConstraintViolationLevel. valueOf(URI levelValue)
Returns the enum constant of this type with the specified name. -
Uses of URI in org.eclipse.rdf4j.spin.function
Methods in org.eclipse.rdf4j.spin.function that return URI Modifier and Type Method Description URI
SpinxFunction. getReturnType()
Methods in org.eclipse.rdf4j.spin.function with parameters of type URI Modifier and Type Method Description void
SpinxFunction. setReturnType(URI datatype)
-