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 interfaceIRIAn Internationalized Resource Identifier (IRI).Methods in org.eclipse.rdf4j.model that return URI Modifier and Type Method Description default URIValueFactory. createURI(String uri)Deprecated.Use {ValueFactory.createIRI(String)instead.default URIValueFactory. 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 booleanModel. add(Resource subj, URI pred, Value obj, Resource... contexts)Deprecated.since 2.0.default booleanModel. contains(Resource subj, URI pred, Value obj, Resource... contexts)Deprecated.since 2.0.default LiteralValueFactory. createLiteral(String label, URI datatype)Deprecated.UseValueFactory.createLiteral(String, IRI)instead.default StatementValueFactory. createStatement(Resource subject, URI predicate, Value object)Deprecated.UseValueFactory.createStatement(Resource, IRI, Value)instead.default StatementValueFactory. createStatement(Resource subject, URI predicate, Value object, Resource context)Deprecated.default ModelModel. filter(Resource subj, URI pred, Value obj, Resource... contexts)Deprecated.default booleanModel. 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 classAbstractIRIBase 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 classSimpleIRIThe default implementation of theIRIinterface.classURIImplDeprecated.since 2.0.Methods in org.eclipse.rdf4j.model.impl that return URI Modifier and Type Method Description URIValidatingValueFactory. createURI(String uri)URIValidatingValueFactory. createURI(String namespace, String localName)Methods in org.eclipse.rdf4j.model.impl with parameters of type URI Modifier and Type Method Description LiteralValidatingValueFactory. createLiteral(String label, URI datatype)StatementValidatingValueFactory. createStatement(Resource subject, URI predicate, Value object)StatementValidatingValueFactory. 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 voidRepositoryConnection. 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 booleanRepositoryConnection. hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)Deprecated.since 2.0.default voidRepositoryConnection. 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 voidSailConnection. addStatement(Resource subj, URI pred, Value obj, Resource... contexts)Deprecated.since 4.0.default voidSailConnection. 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 voidSailConnection. removeStatement(UpdateContext op, Resource subj, URI pred, Value obj, Resource... contexts)Deprecated.since 4.0.default voidSailConnection. 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 classMemIRIA 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 classNativeIRI -
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 ConstraintViolationLevelConstraintViolationLevel. 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 URISpinxFunction. getReturnType()Methods in org.eclipse.rdf4j.spin.function with parameters of type URI Modifier and Type Method Description voidSpinxFunction. setReturnType(URI datatype)
-