Uses of Interface
org.eclipse.rdf4j.model.Resource
-
-
Uses of Resource in org.eclipse.rdf4j.http.client
Methods in org.eclipse.rdf4j.http.client with parameters of type Resource Modifier and Type Method Description void
RDF4JProtocolSession. addData(java.io.InputStream contents, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
RDF4JProtocolSession. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
void
RDF4JProtocolSession. removeData(java.io.InputStream contents, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
long
RDF4JProtocolSession. size(Resource... contexts)
protected void
RDF4JProtocolSession. upload(java.io.InputStream contents, java.lang.String baseURI, RDFFormat dataFormat, boolean overwrite, boolean preserveNodeIds, Protocol.Action action, Resource... contexts)
void
RDF4JProtocolSession. upload(java.io.InputStream contents, java.lang.String baseURI, RDFFormat dataFormat, boolean overwrite, boolean preserveNodeIds, Resource... contexts)
protected void
RDF4JProtocolSession. upload(java.io.Reader contents, java.lang.String baseURI, RDFFormat dataFormat, boolean overwrite, boolean preserveNodeIds, Protocol.Action action, Resource... contexts)
void
RDF4JProtocolSession. upload(java.io.Reader contents, java.lang.String baseURI, RDFFormat dataFormat, boolean overwrite, boolean preserveNodeIds, Resource... contexts)
protected void
RDF4JProtocolSession. upload(org.apache.http.HttpEntity reqEntity, java.lang.String baseURI, boolean overwrite, boolean preserveNodeIds, Protocol.Action action, Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.http.protocol
Methods in org.eclipse.rdf4j.http.protocol that return Resource Modifier and Type Method Description static Resource
Protocol. decodeContext(java.lang.String encodedValue, ValueFactory valueFactory)
Decode a previously encoded context Resource.static Resource[]
Protocol. decodeContexts(java.lang.String[] encodedValues, ValueFactory valueFactory)
Decode previously encoded contexts.static Resource
Protocol. decodeResource(java.lang.String encodedValue, ValueFactory valueFactory)
Decode a previously encoded Resource.Methods in org.eclipse.rdf4j.http.protocol with parameters of type Resource Modifier and Type Method Description static java.lang.String
Protocol. encodeContext(Resource context)
Encodes a context resource for use in a URL.static java.lang.String[]
Protocol. encodeContexts(Resource... contexts)
Encode context resources for use in a URL. -
Uses of Resource in org.eclipse.rdf4j.http.protocol.transaction
Methods in org.eclipse.rdf4j.http.protocol.transaction that return Resource Modifier and Type Method Description private Resource[]
TransactionSAXParser. createContexts(int startIdx)
Methods in org.eclipse.rdf4j.http.protocol.transaction with parameters of type Resource Modifier and Type Method Description protected void
TransactionWriter. serialize(Resource[] contexts, XMLWriter xmlWriter)
protected void
TransactionWriter. serialize(Resource resource, XMLWriter xmlWriter)
-
Uses of Resource in org.eclipse.rdf4j.http.protocol.transaction.operations
Fields in org.eclipse.rdf4j.http.protocol.transaction.operations declared as Resource Modifier and Type Field Description protected Resource[]
ContextOperation. contexts
private Resource
StatementOperation. subject
Methods in org.eclipse.rdf4j.http.protocol.transaction.operations that return Resource Modifier and Type Method Description Resource[]
ContextOperation. getContexts()
Resource
StatementOperation. getSubject()
Methods in org.eclipse.rdf4j.http.protocol.transaction.operations with parameters of type Resource Modifier and Type Method Description void
ContextOperation. setContexts(Resource... contexts)
void
StatementOperation. setSubject(Resource subject)
Constructors in org.eclipse.rdf4j.http.protocol.transaction.operations with parameters of type Resource Constructor Description AddStatementOperation(Resource subj, IRI pred, Value obj, Resource... contexts)
Create an AddStatementOperation.ClearOperation(Resource... contexts)
ContextOperation(Resource... contexts)
RemoveStatementsOperation(Resource subj, IRI pred, Value obj, Resource... contexts)
Creates a RemoveStatementsOperation.StatementOperation(Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.model
Subinterfaces of Resource in org.eclipse.rdf4j.model Modifier and Type Interface Description interface
BNode
An RDF-1.1 blank node (aka bnode, aka anonymous node).interface
IRI
An Internationalized Resource Identifier (IRI).interface
Triple
An RDF-star embedded triple.Methods in org.eclipse.rdf4j.model that return Resource Modifier and Type Method Description Resource
Statement. getContext()
Gets the context of this statement.Resource
Statement. getSubject()
Gets the subject of this statement.Resource
Triple. getSubject()
Gets the subject of this triple.Methods in org.eclipse.rdf4j.model that return types with arguments of type Resource Modifier and Type Method Description default java.util.Set<Resource>
Model. contexts()
Returns aSet
view of the contexts contained in this model.java.util.Set<Resource>
Model. subjects()
Returns aSet
view of the subjects contained in this model.Methods in org.eclipse.rdf4j.model with parameters of type Resource Modifier and Type Method Description boolean
Model. add(Resource subj, IRI pred, Value obj, Resource... contexts)
Adds one or more statements to the model.boolean
Model. clear(Resource... context)
Removes statements with the specified context exist in this model.boolean
Model. contains(Resource subj, IRI pred, Value obj, Resource... contexts)
Determines if statements with the specified subject, predicate, object and (optionally) context exist in this model.Statement
ValueFactory. createStatement(Resource subject, IRI predicate, Value object)
Creates a new statement with the supplied subject, predicate and object.Statement
ValueFactory. createStatement(Resource subject, IRI predicate, Value object, Resource context)
Creates a new statement with the supplied subject, predicate and object and associated context.default Triple
ValueFactory. createTriple(Resource subject, IRI predicate, Value object)
Creates a new RDF-star triple with the supplied subject, predicate and object.Model
Model. filter(Resource subj, IRI pred, Value obj, Resource... contexts)
Returns a filtered view of the statements with the specified subject, predicate, object and (optionally) context.default java.lang.Iterable<Statement>
Model. getStatements(Resource subject, IRI predicate, Value object, Resource... contexts)
Returns anIterable
over allStatement
s in this Model that match the supplied criteria.boolean
Model. remove(Resource subj, IRI pred, Value obj, Resource... contexts)
Removes statements with the specified subject, predicate, object and (optionally) context exist in this model. -
Uses of Resource in org.eclipse.rdf4j.model.base
Classes in org.eclipse.rdf4j.model.base that implement Resource Modifier and Type Class Description class
AbstractBNode
Base class forBNode
, offering common functionality.(package private) static class
AbstractBNode.GenericBNode
class
AbstractIRI
Base class forIRI
, offering common functionality.(package private) static class
AbstractIRI.GenericIRI
class
AbstractTriple
Base class forTriple
, offering common functionality.(package private) static class
AbstractTriple.GenericTriple
class
InternedIRI
An IRI implementation that interns the stringValue so that two objects can be compared by their stringValue reference.Fields in org.eclipse.rdf4j.model.base declared as Resource Modifier and Type Field Description private Resource
AbstractValueFactory.GenericStatement. context
private Resource
AbstractTriple.GenericTriple. subject
private Resource
AbstractValueFactory.GenericStatement. subject
Methods in org.eclipse.rdf4j.model.base that return Resource Modifier and Type Method Description Resource
AbstractValueFactory.GenericStatement. getContext()
Resource
AbstractTriple.GenericTriple. getSubject()
Resource
AbstractValueFactory.GenericStatement. getSubject()
Methods in org.eclipse.rdf4j.model.base with parameters of type Resource Modifier and Type Method Description Statement
AbstractValueFactory. createStatement(Resource subject, IRI predicate, Value object)
Statement
AbstractValueFactory. createStatement(Resource subject, IRI predicate, Value object, Resource context)
Triple
AbstractValueFactory. createTriple(Resource subject, IRI predicate, Value object)
Constructors in org.eclipse.rdf4j.model.base with parameters of type Resource Constructor Description GenericStatement(Resource subject, IRI predicate, Value object, Resource context)
GenericTriple(Resource subject, IRI predicate, Value object)
-
Uses of Resource in org.eclipse.rdf4j.model.impl
Classes in org.eclipse.rdf4j.model.impl with type parameters of type Resource Modifier and Type Class Description class
GenericStatement<R extends Resource,I extends IRI,V extends Value>
An implementation of the Statement interface with support for Java Generics.Classes in org.eclipse.rdf4j.model.impl that implement Resource Modifier and Type Class Description class
SimpleBNode
An simple default implementation of theBNode
interface.class
SimpleIRI
The default implementation of theIRI
interface.class
SimpleTriple
A simple default implementation of theTriple
interface.Fields in org.eclipse.rdf4j.model.impl declared as Resource Modifier and Type Field Description private Resource
ContextStatement. context
Deprecated, for removal: This API element is subject to removal in a future version.The statement's context, if applicable.protected R
GenericStatement. context
protected Resource[]
FilteredModel. contexts
private static Resource[]
DynamicModel. NULL_CTX
(package private) static Resource[]
LinkedHashModel. NULL_CTX
protected Resource
FilteredModel. subj
protected R
GenericStatement. subject
private Resource
SimpleStatement. subject
Deprecated, for removal: This API element is subject to removal in a future version.The statement's subject.private Resource
SimpleTriple. subject
The triple's subject.Fields in org.eclipse.rdf4j.model.impl with type parameters of type Resource Modifier and Type Field Description (package private) LinkedHashModel.ModelNode<Resource>
LinkedHashModel.ModelStatement. ctx
(package private) LinkedHashModel.ModelNode<Resource>
LinkedHashModel.ModelStatement. subj
Methods in org.eclipse.rdf4j.model.impl that return Resource Modifier and Type Method Description Resource
ContextStatement. getContext()
Deprecated, for removal: This API element is subject to removal in a future version.Resource
LinkedHashModel.ModelStatement. getContext()
Resource
SimpleStatement. getContext()
Deprecated, for removal: This API element is subject to removal in a future version.Resource
LinkedHashModel.ModelStatement. getSubject()
Resource
SimpleStatement. getSubject()
Deprecated, for removal: This API element is subject to removal in a future version.Resource
SimpleTriple. getSubject()
private Resource[]
LinkedHashModel. notNull(Resource[] contexts)
Methods in org.eclipse.rdf4j.model.impl that return types with arguments of type Resource Modifier and Type Method Description java.util.Set<Resource>
AbstractModel. contexts()
java.util.Set<Resource>
DynamicModel. contexts()
java.util.Set<Resource>
AbstractModel. subjects()
java.util.Set<Resource>
DynamicModel. subjects()
Methods in org.eclipse.rdf4j.model.impl with parameters of type Resource Modifier and Type Method Description private boolean
FilteredModel. accept(Resource s, IRI p, Value o, Resource... c)
boolean
DynamicModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
EmptyModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
FilteredModel. add(Resource s, IRI p, Value o, Resource... c)
boolean
LinkedHashModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
TreeModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
UnmodifiableModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)
private java.util.Set<LinkedHashModel.ModelStatement>
LinkedHashModel. choose(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
AbstractModel. clear(Resource... contexts)
boolean
DynamicModel. clear(Resource... context)
boolean
DynamicModel. contains(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
EmptyModel. contains(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
FilteredModel. contains(Resource s, IRI p, Value o, Resource... c)
boolean
LinkedHashModel. contains(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
TreeModel. contains(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
UnmodifiableModel. contains(Resource subj, IRI pred, Value obj, Resource... contexts)
Statement
SimpleValueFactory. createStatement(Resource subject, IRI predicate, Value object)
Statement
SimpleValueFactory. createStatement(Resource subject, IRI predicate, Value object, Resource context)
Statement
ValidatingValueFactory. createStatement(Resource subject, IRI predicate, Value object)
Statement
ValidatingValueFactory. createStatement(Resource subject, IRI predicate, Value object, Resource context)
Triple
SimpleValueFactory. createTriple(Resource subject, IRI predicate, Value object)
Triple
ValidatingValueFactory. createTriple(Resource subject, IRI predicate, Value object)
boolean
ContextStatement. exactSameContext(Resource context)
Deprecated, for removal: This API element is subject to removal in a future version.boolean
SimpleStatement. exactSameSubject(Resource subject)
Deprecated, for removal: This API element is subject to removal in a future version.Model
DynamicModel. filter(Resource subj, IRI pred, Value obj, Resource... contexts)
Model
EmptyModel. filter(Resource subj, IRI pred, Value obj, Resource... contexts)
Model
FilteredModel. filter(Resource s, IRI p, Value o, Resource... c)
Model
LinkedHashModel. filter(Resource subj, IRI pred, Value obj, Resource... contexts)
Model
TreeModel. filter(Resource subj, IRI pred, Value obj, Resource... contexts)
Model
UnmodifiableModel. filter(Resource subj, IRI pred, Value obj, Resource... contexts)
java.lang.Iterable<Statement>
DynamicModel. getStatements(Resource subject, IRI predicate, Value object, Resource... contexts)
private boolean
FilteredModel. matches(Resource[] stContext, Resource... contexts)
private boolean
FilteredModel. matches(Resource stContext, Resource... contexts)
private LinkedHashModel.ModelIterator
LinkedHashModel. matchPattern(Resource subj, IRI pred, Value obj, Resource... contexts)
(package private) java.util.Iterator<Statement>
TreeModel. matchPattern(Resource subj, IRI pred, Value obj, Resource ctx)
private Resource[]
LinkedHashModel. notNull(Resource[] contexts)
boolean
DynamicModel. remove(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
EmptyModel. remove(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
FilteredModel. remove(Resource s, IRI p, Value o, Resource... c)
boolean
LinkedHashModel. remove(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
TreeModel. remove(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
UnmodifiableModel. remove(Resource subj, IRI pred, Value obj, Resource... contexts)
protected abstract void
FilteredModel. removeFilteredTermIteration(java.util.Iterator<Statement> iter, Resource subj, IRI pred, Value obj, Resource... contexts)
Called by aggregate sets when a term has been removed from a term iterator.abstract void
AbstractModel. removeTermIteration(java.util.Iterator<Statement> iter, Resource subj, IRI pred, Value obj, Resource... contexts)
Called by aggregate sets when a term has been removed from a term iterator.void
EmptyModel. removeTermIteration(java.util.Iterator<Statement> iter, Resource subj, IRI pred, Value obj, Resource... contexts)
void
FilteredModel. removeTermIteration(java.util.Iterator<Statement> iter, Resource s, IRI p, Value o, Resource... c)
void
LinkedHashModel. removeTermIteration(java.util.Iterator iterator, Resource subj, IRI pred, Value obj, Resource... contexts)
void
TreeModel. removeTermIteration(java.util.Iterator<Statement> iterator, Resource subj, IRI pred, Value obj, Resource... contexts)
void
UnmodifiableModel. removeTermIteration(java.util.Iterator<Statement> iter, Resource subj, IRI pred, Value obj, Resource... contexts)
Constructors in org.eclipse.rdf4j.model.impl with parameters of type Resource Constructor Description ContextStatement(Resource subject, IRI predicate, Value object, Resource context)
Deprecated, for removal: This API element is subject to removal in a future version.Creates a new Statement with the supplied subject, predicate and object for the specified associated context.FilteredModel(AbstractModel model, Resource subj, IRI pred, Value obj, Resource... contexts)
SimpleStatement(Resource subject, IRI predicate, Value object)
Deprecated, for removal: This API element is subject to removal in a future version.Creates a new Statement with the supplied subject, predicate and object.SimpleTriple(Resource subject, IRI predicate, Value object)
Creates a new Triple with the supplied subject, predicate and object.TreeStatement(Resource subject, IRI predicate, Value object, Resource ctx)
Constructor parameters in org.eclipse.rdf4j.model.impl with type arguments of type Resource Constructor Description ModelStatement(LinkedHashModel.ModelNode<Resource> subj, LinkedHashModel.ModelNode<IRI> pred, LinkedHashModel.ModelNode<Value> obj, LinkedHashModel.ModelNode<Resource> ctx)
ModelStatement(LinkedHashModel.ModelNode<Resource> subj, LinkedHashModel.ModelNode<IRI> pred, LinkedHashModel.ModelNode<Value> obj, LinkedHashModel.ModelNode<Resource> ctx, Statement statement)
-
Uses of Resource in org.eclipse.rdf4j.model.util
Fields in org.eclipse.rdf4j.model.util declared as Resource Modifier and Type Field Description private Resource
ModelBuilder. currentNamedGraph
private Resource
ModelBuilder. currentSubject
Fields in org.eclipse.rdf4j.model.util with type parameters of type Resource Modifier and Type Field Description static java.util.function.Function<Triple,Resource>
Statements. TRIPLE_BNODE_MAPPER
Methods in org.eclipse.rdf4j.model.util that return Resource Modifier and Type Method Description private static Resource
Statements. createReifiedStatement(ValueFactory vf, java.util.function.Function<Triple,Resource> reifiedIdMapper, Triple triple, Resource context, java.util.function.Consumer<Statement> consumer)
Converts the supplied RDF-star triple to a series of RDF reification statements and sends the statements to the supplied consumer.Methods in org.eclipse.rdf4j.model.util that return types with arguments of type Resource Modifier and Type Method Description java.util.Set<Resource>
SynchronizedModel. contexts()
private static java.util.Map<Resource,Resource>
Models. createNewBnodeMapping(java.util.Map<Resource,Resource> bNodeMapping, Statement st1, Statement st2)
private static java.util.Map<Resource,Resource>
Models. createNewBnodeMapping(java.util.Map<Resource,Resource> bNodeMapping, Statement st1, Statement st2)
static java.util.Optional<Resource>
Models. getPropertyResource(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve a property value as an IRI for the supplied subject from the given model.static java.util.Set<Resource>
Models. getPropertyResources(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve all property Resource values for the supplied subject and property from the given model.static java.util.Optional<Resource>
Configurations. getResourceValue(Model model, Resource subject, IRI property, IRI legacyProperty)
Retrieve a property value for the supplied subject as aResource
if present, falling back to a supplied legacy property .static java.util.Optional<Resource>
Models. objectResource(java.lang.Iterable<Statement> statements)
Retrieves an objectResource
value from the supplied statements.static java.util.Optional<Resource>
Models. objectResource(Model m)
Retrieves an objectResource
value from the statements in the given model.static java.util.Set<Resource>
Models. objectResources(java.lang.Iterable<Statement> statements)
Retrieves all objectResource
values from the supplied statements.static java.util.Set<Resource>
Models. objectResources(Model m)
Retrieves all objectResource
values from the supplied model.static java.util.Optional<Resource>
Models. subject(java.lang.Iterable<Statement> statements)
Retrieves a subjectResource
from the supplied statements.static java.util.Optional<Resource>
Models. subject(Model m)
Retrieves a subjectResource
from the statements in the given model.java.util.Set<Resource>
SynchronizedModel. subjects()
Methods in org.eclipse.rdf4j.model.util with parameters of type Resource Modifier and Type Method Description ModelBuilder
ModelBuilder. add(Resource subject, IRI predicate, java.lang.Object object)
Add an RDF statement with the given subject, predicate and object to the model, using the current graph (either named or default).boolean
SynchronizedModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)
static <C extends java.util.Collection<Statement>>
CRDFCollections. asRDF(java.lang.Iterable<?> values, Resource head, C sink, Resource... contexts)
Converts the suppliedIterable
to an RDF Collection, using the suppliedhead
resource as the starting resource of the RDF Collection.static <C extends java.util.Collection<Statement>>
CRDFCollections. asRDF(java.lang.Iterable<?> values, Resource head, C sink, ValueFactory valueFactory, Resource... contexts)
Converts the suppliedIterable
to an RDF Collection, using the suppliedhead
resource as the starting resource of the RDF Collection.static <C extends java.util.Collection<Value>>
CRDFCollections. asValues(Model m, Resource head, C collection, Resource... contexts)
Converts an RDF Collection to a JavaCollection
ofValue
objects.boolean
SynchronizedModel. clear(Resource... context)
static void
Statements. consume(ValueFactory vf, Resource subject, IRI predicate, Value object, java.util.function.Consumer<Statement> consumer, Resource... contexts)
Creates one or moreStatement
objects with the given subject, predicate and object, one for each given context, and sends each created statement to the suppliedConsumer
.static void
RDFCollections. consumeCollection(java.lang.Iterable<?> values, Resource head, java.util.function.Consumer<Statement> consumer, Resource... contexts)
Converts the suppliedIterable
to an RDF Collection, using the suppliedhead
resource as the starting resource of the RDF Collection.static void
RDFCollections. consumeCollection(java.lang.Iterable<?> values, Resource head, java.util.function.Consumer<Statement> consumer, ValueFactory vf, Resource... contexts)
Converts the suppliedIterable
to an RDF Collection, using the suppliedhead
resource as the starting resource of the RDF Collection.static void
RDFContainers. consumeContainer(IRI containerType, java.lang.Iterable<?> values, Resource container, java.util.function.Consumer<Statement> consumer, Resource... contexts)
Converts the suppliedIterable
to an RDF Container, using the suppliedhead
resource as the starting resource of the RDF Containter.static void
RDFContainers. consumeContainer(IRI containerType, java.lang.Iterable<?> values, Resource container, java.util.function.Consumer<Statement> consumer, ValueFactory vf, Resource... contexts)
Converts the suppliedIterable
to an RDF Container, using the suppliedhead
resource as the starting resource of the RDF Container.static void
RDFCollections. consumeValues(Model m, Resource head, java.util.function.Consumer<Value> consumer, Resource... contexts)
static void
RDFContainers. consumeValues(Model m, Resource container, IRI containerType, java.util.function.Consumer<Value> consumer, Resource... contexts)
boolean
SynchronizedModel. contains(Resource subj, IRI pred, Value obj, Resource... contexts)
static <C extends java.util.Collection<Statement>>
CStatements. create(ValueFactory vf, Resource subject, IRI predicate, Value object, C collection, Resource... contexts)
Creates one or moreStatement
objects with the given subject, predicate and object, one for each given context.private static Resource
Statements. createReifiedStatement(ValueFactory vf, java.util.function.Function<Triple,Resource> reifiedIdMapper, Triple triple, Resource context, java.util.function.Consumer<Statement> consumer)
Converts the supplied RDF-star triple to a series of RDF reification statements and sends the statements to the supplied consumer.static void
RDFCollections. extract(Model sourceModel, Resource head, java.util.function.Consumer<Statement> consumer, Resource... contexts)
Extracts the RDF Collection starting with suppliedhead
resource from the supplied sourceModel
and sends the statements that make up the collection to the suppliedConsumer
.static <E extends RDF4JException>
voidRDFCollections. extract(GetStatementOptional statementSupplier, Resource head, java.util.function.Consumer<Statement> collectionConsumer, java.util.function.Function<java.lang.String,java.util.function.Supplier<E>> exceptionSupplier, Resource... contexts)
Extracts an RDF Collection starting with the supplied list head from the statement supplier and sends all statements that make up the collection to the suppliedConsumer
function.static void
RDFContainers. extract(IRI containerType, Model sourceModel, Resource container, java.util.function.Consumer<Statement> consumer, Resource... contexts)
Extracts the RDF Container starting with suppliedhead
resource from the supplied sourceModel
and sends the statements that make up the collection to the suppliedConsumer
.static <E extends RDF4JException>
voidRDFContainers. extract(IRI containerType, GetStatementOptional statementSupplier, Resource container, java.util.function.Consumer<Statement> collectionConsumer, java.util.function.Function<java.lang.String,java.util.function.Supplier<E>> exceptionSupplier, Resource... contexts)
Extracts an RDF Container starting with the supplied container head from the statement supplier and sends all statements that make up the collection to the suppliedConsumer
function.Model
SynchronizedModel. filter(Resource subj, IRI pred, Value obj, Resource... contexts)
java.util.Optional<Statement>
GetStatementOptional. get(Resource subject, IRI predicate, Value object, Resource... contexts)
Either supplies a statement matching the given pattern, orOptional.empty()
otherwise.static <C extends java.util.Collection<Statement>>
CRDFCollections. getCollection(Model sourceModel, Resource head, C sink, Resource... contexts)
Extracts the RDF Collection starting with the suppliedhead
resource from the supplied sourceModel
.static <C extends java.util.Collection<Statement>>
CRDFContainers. getContainer(IRI containerType, Model sourceModel, Resource container, C sink, Resource... contexts)
static java.util.Optional<IRI>
Configurations. getIRIValue(Model model, Resource subject, IRI property, IRI legacyProperty)
Retrieve a property value for the supplied subject as aIRI
if present, falling back to a supplied legacy property .static java.util.Optional<Literal>
Configurations. getLiteralValue(Model model, Resource subject, IRI property, IRI legacyProperty)
Retrieve a property value for the supplied subject as aLiteral
if present, falling back to a supplied legacy property .static java.util.Set<Value>
Models. getProperties(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve all property values for the supplied subject and property from the given model.static java.util.Optional<Value>
Models. getProperty(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve a property value for the supplied subject from the given model.static java.util.Optional<IRI>
Models. getPropertyIRI(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve a property value as an IRI for the supplied subject from the given model.static java.util.Set<IRI>
Models. getPropertyIRIs(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve all property IRI values for the supplied subject and property from the given model.static java.util.Optional<Literal>
Models. getPropertyLiteral(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve a property value as aLiteral
for the supplied subject from the given model.static java.util.Set<Literal>
Models. getPropertyLiterals(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve all property Literal values for the supplied subject and property from the given model.static java.util.Optional<Resource>
Models. getPropertyResource(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve a property value as an IRI for the supplied subject from the given model.static java.util.Set<Resource>
Models. getPropertyResources(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve all property Resource values for the supplied subject and property from the given model.static java.util.Optional<java.lang.String>
Models. getPropertyString(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve a property value as a String for the supplied subject from the given model.static java.util.Set<java.lang.String>
Models. getPropertyStrings(Model m, Resource subject, IRI property, Resource... contexts)
Retrieve all property values as Strings for the supplied subject and property from the given model.static java.util.Set<Value>
Configurations. getPropertyValues(Model model, Resource subject, IRI property, IRI legacyProperty)
Retrieve all property values for the supplied subject as a Set of values and include all values for any legacy property.static java.util.Optional<Resource>
Configurations. getResourceValue(Model model, Resource subject, IRI property, IRI legacyProperty)
Retrieve a property value for the supplied subject as aResource
if present, falling back to a supplied legacy property .ModelBuilder
ModelBuilder. namedGraph(Resource namedGraph)
Set the current graph in which to add new statements to the supplied named graph.boolean
SynchronizedModel. remove(Resource subj, IRI pred, Value obj, Resource... contexts)
static Model
Models. setProperty(Model m, Resource subject, IRI property, Value value, Resource... contexts)
Sets the property value for the given subject to the given object value, replacing any existing value(s) for the subject's property.static Statement
Statements. statement(Resource subject, IRI predicate, Value object, Resource context)
Create aStatement
from the supplied subject, predicate, object and context.static Statement
Statements. statement(Triple triple, Resource context)
Create aStatement
from the suppliedRDF-star triple
and context.static Statement
Statements. statement(ValueFactory vf, Resource subject, IRI predicate, Value object, Resource context)
Create aStatement
from the supplied subject, predicate, object and context.static Statement
Statements. statement(ValueFactory vf, Triple triple, Resource context)
Create aStatement
from the suppliedRDF-star triple
and context.static Model
Models. stripContexts(Model model, Resource... contexts)
Strips contexts from the input model.ModelBuilder
ModelBuilder. subject(Resource subject)
Set the subject resource about which statements are to be added to the model.static <C extends java.util.Collection<Statement>>
CRDFContainers. toRDF(IRI containerType, java.lang.Iterable<?> values, Resource container, C sink, Resource... contexts)
Converts the suppliedIterable
to an RDF Container, using the suppliedhead
resource as the starting resource of the RDF Containter.static <C extends java.util.Collection<Statement>>
CRDFContainers. toRDF(IRI containerType, java.lang.Iterable<?> values, Resource container, C sink, ValueFactory vf, Resource... contexts)
Converts the suppliedIterable
to an RDF Container, using the suppliedhead
resource as the starting resource of the RDF Containter.static 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.static <C extends java.util.Collection<Value>>
CRDFContainers. toValues(IRI containerType, Model m, Resource container, C collection, Resource... contexts)
Converts an RDF Containter to a JavaCollection
ofValue
objects.static Triple
Values. triple(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, Resource subject, IRI predicate, Value object)
Creates a newRDF-star embedded triple
with the supplied subject, predicate, and object.Method parameters in org.eclipse.rdf4j.model.util with type arguments of type Resource Modifier and Type Method Description private static boolean
Models. bnodeValueMatching(java.util.Map<Resource,Resource> bNodeMapping, Value obj1, Value obj2)
private static boolean
Models. bnodeValueMatching(java.util.Map<Resource,Resource> bNodeMapping, Value obj1, Value obj2)
static void
Statements. convertRDFStarToReification(ValueFactory vf, java.util.function.Function<Triple,Resource> reifiedIdMapper, Statement st, java.util.function.Consumer<Statement> consumer)
Converts the supplied RDF-star statement to RDF reification statements, and sends the resultant statements to the supplied consumer.private static java.util.Map<Resource,Resource>
Models. createNewBnodeMapping(java.util.Map<Resource,Resource> bNodeMapping, Statement st1, Statement st2)
private static java.util.Map<Resource,Resource>
Models. createNewBnodeMapping(java.util.Map<Resource,Resource> bNodeMapping, Statement st1, Statement st2)
private static Resource
Statements. createReifiedStatement(ValueFactory vf, java.util.function.Function<Triple,Resource> reifiedIdMapper, Triple triple, Resource context, java.util.function.Consumer<Statement> consumer)
Converts the supplied RDF-star triple to a series of RDF reification statements and sends the statements to the supplied consumer.private static java.util.List<Statement>
Models. findMatchingStatements(Statement st, Model model, java.util.Map<Resource,Resource> bNodeMapping)
private static java.util.List<Statement>
Models. findMatchingStatements(Statement st, Model model, java.util.Map<Resource,Resource> bNodeMapping)
private static boolean
Models. statementsMatch(Statement st1, Statement st2, java.util.Map<Resource,Resource> bNodeMapping)
private static boolean
Models. statementsMatch(Statement st1, Statement st2, java.util.Map<Resource,Resource> bNodeMapping)
-
Uses of Resource in org.eclipse.rdf4j.query.algebra.evaluation
Methods in org.eclipse.rdf4j.query.algebra.evaluation with parameters of type Resource Modifier and Type Method Description CloseableIteration<? extends Triple,QueryEvaluationException>
RDFStarTripleSource. getRdfStarTriples(Resource subj, IRI pred, Value obj)
Gets all Triple nodes that have a specific subject, predicate and/or object.CloseableIteration<? extends Statement,QueryEvaluationException>
TripleSource. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
Gets all statements that have a specific subject, predicate and/or object. -
Uses of Resource in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps
Fields in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps declared as Resource Modifier and Type Field Description static Resource[]
StatementPatternQueryEvaluationStep. ALL_CONTEXT
static Resource[]
StatementPatternQueryEvaluationStep. DEFAULT_CONTEXT
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps that return Resource Modifier and Type Method Description private static Resource[]
StatementPatternQueryEvaluationStep. contextsGivenContextVal(Value contextValue)
private static Resource[]
StatementPatternQueryEvaluationStep. fillContextsFromDatasSetGraphs(java.util.Set<IRI> graphs)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps with parameters of type Resource Modifier and Type Method Description protected static java.util.function.Predicate<Statement>
StatementPatternQueryEvaluationStep. filterContextOrEqualVariables(StatementPattern statementPattern, Value subjValue, Value predValue, Value objValue, Resource[] contexts)
Generate a predicate that tests for Named contexts are matched by retrieving all statements from the store and filtering out the statements that do not have a context.private CloseableIteration<? extends Statement,QueryEvaluationException>
StatementPatternQueryEvaluationStep. handleFilter(Resource[] contexts, Resource subject, IRI predicate, Value object, CloseableIteration<? extends Statement,QueryEvaluationException> iteration)
-
Uses of Resource in org.eclipse.rdf4j.query.algebra.evaluation.util
Methods in org.eclipse.rdf4j.query.algebra.evaluation.util that return types with arguments of type Resource Modifier and Type Method Description static CloseableIteration<Resource,QueryEvaluationException>
TripleSources. getObjectResources(Resource subject, IRI predicate, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.static Iteration<Resource,QueryEvaluationException>
TripleSources. listResources(Resource subj, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.Methods in org.eclipse.rdf4j.query.algebra.evaluation.util with parameters of type Resource Modifier and Type Method Description static boolean
TripleSources. booleanValue(Resource subj, IRI pred, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.static CloseableIteration<Literal,QueryEvaluationException>
TripleSources. getObjectLiterals(Resource subject, IRI predicate, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.static CloseableIteration<Resource,QueryEvaluationException>
TripleSources. getObjectResources(Resource subject, IRI predicate, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.static CloseableIteration<IRI,QueryEvaluationException>
TripleSources. getObjectURIs(Resource subject, IRI predicate, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.static Iteration<Value,QueryEvaluationException>
TripleSources. list(Resource subj, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.static Iteration<Resource,QueryEvaluationException>
TripleSources. listResources(Resource subj, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.static Statement
TripleSources. single(Resource subj, IRI pred, Value obj, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.Returns the single statement with the given subject, predicate and object or null if none exists.static Value
TripleSources. singleValue(Resource subj, IRI pred, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Resource in org.eclipse.rdf4j.query.dawg
Methods in org.eclipse.rdf4j.query.dawg with parameters of type Resource Modifier and Type Method Description private Binding
DAWGTestResultSetParser. getBinding(Resource bindingNode)
private java.util.List<java.lang.String>
DAWGTestResultSetParser. getBindingNames(Resource resultSetNode)
private void
DAWGTestResultSetParser. reportSolution(Resource solutionNode, java.util.List<java.lang.String> bindingNames)
private void
DAWGTestResultSetWriter. reportStatement(Resource subject, IRI predicate, Value object)
-
Uses of Resource in org.eclipse.rdf4j.query.parser.sparql
Methods in org.eclipse.rdf4j.query.parser.sparql that return Resource Modifier and Type Method Description protected Resource
SPARQLUpdateDataBlockParser. parseImplicitBlank()
protected Resource
SPARQLUpdateDataBlockParser. parseNodeID()
-
Uses of Resource in org.eclipse.rdf4j.query.resultio.sparqlxml
Fields in org.eclipse.rdf4j.query.resultio.sparqlxml declared as Resource Modifier and Type Field Description private Resource
SPARQLResultsSAXParser.TripleContainer. subject
Methods in org.eclipse.rdf4j.query.resultio.sparqlxml that return Resource Modifier and Type Method Description Resource
SPARQLResultsSAXParser.TripleContainer. getSubject()
Methods in org.eclipse.rdf4j.query.resultio.sparqlxml with parameters of type Resource Modifier and Type Method Description void
SPARQLResultsSAXParser.TripleContainer. setSubject(Resource subject)
-
Uses of Resource in org.eclipse.rdf4j.query.resultio.text.csv
Methods in org.eclipse.rdf4j.query.resultio.text.csv with parameters of type Resource Modifier and Type Method Description protected void
SPARQLResultsCSVWriter. writeResource(Resource res)
-
Uses of Resource in org.eclipse.rdf4j.query.resultio.text.tsv
Methods in org.eclipse.rdf4j.query.resultio.text.tsv with parameters of type Resource Modifier and Type Method Description protected void
SPARQLResultsTSVWriter. writeResource(Resource res)
-
Uses of Resource in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that return types with arguments of type Resource Modifier and Type Method Description RepositoryResult<Resource>
RepositoryConnection. getContextIDs()
Gets all resources that are used as content identifiers.Methods in org.eclipse.rdf4j.repository with parameters of type Resource Modifier and Type Method Description void
RepositoryConnection. add(java.io.File file, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from the specified file to a specific contexts in the repository.default void
RepositoryConnection. add(java.io.File file, Resource... contexts)
Adds RDF data from the specified file to a specific contexts in the repository.default void
RepositoryConnection. add(java.io.File file, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from the specified file to a specific contexts in the repository.void
RepositoryConnection. add(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from an InputStream to the repository, optionally to one or more named contexts.default void
RepositoryConnection. add(java.io.InputStream in, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from an InputStream to the repository, optionally to one or more named contexts.void
RepositoryConnection. add(java.io.Reader reader, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from a Reader to the repository, optionally to one or more named contexts.default void
RepositoryConnection. add(java.io.Reader reader, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from a Reader to the repository, optionally to one or more named contexts.void
RepositoryConnection. add(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
Adds the supplied statements to this repository, optionally to one or more named contexts.void
RepositoryConnection. add(java.net.URL url, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
Adds the RDF data that can be found at the specified URL to the repository, optionally to one or more named contexts.default void
RepositoryConnection. add(java.net.URL url, Resource... contexts)
Adds the RDF data that can be found at the specified URL to the repository, optionally to one or more named contexts.default void
RepositoryConnection. add(java.net.URL url, RDFFormat dataFormat, Resource... contexts)
Adds the RDF data that can be found at the specified URL to the repository, optionally to one or more named contexts.default <E extends java.lang.Exception>
voidRepositoryConnection. add(CloseableIteration<? extends Statement,E> statements, Resource... contexts)
Adds the supplied statements to this repository, optionally to one or more named contexts.<E extends java.lang.Exception>
voidRepositoryConnection. add(Iteration<? extends Statement,E> statements, Resource... contexts)
Deprecated, for removal: This API element is subject to removal in a future version.void
RepositoryConnection. add(Resource subject, IRI predicate, Value object, Resource... contexts)
Adds a statement with the specified subject, predicate and object to this repository, optionally to one or more named contexts.void
RepositoryConnection. add(Statement st, Resource... contexts)
Adds the supplied statement to this repository, optionally to one or more named contexts.default void
RepositoryConnection. add(RepositoryResult<Statement> statements, Resource... contexts)
Adds the supplied statements to this repository, optionally to one or more named contexts.void
RepositoryConnection. clear(Resource... contexts)
Removes all statements from a specific contexts in the repository.void
RepositoryConnection. export(RDFHandler handler, Resource... contexts)
Exports all explicit statements in the specified contexts to the supplied RDFHandler.void
RepositoryConnection. exportStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts.RepositoryResult<Statement>
RepositoryConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository.default RepositoryResult<Statement>
RepositoryConnection. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository.boolean
RepositoryConnection. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in the specified contexts.boolean
RepositoryConnection. hasStatement(Statement st, boolean includeInferred, Resource... contexts)
Checks whether the repository contains the specified statement, optionally in the specified contexts.void
RepositoryConnection. remove(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
Removes the supplied statements from the specified contexts in this repository.default <E extends java.lang.Exception>
voidRepositoryConnection. remove(CloseableIteration<? extends Statement,E> statements, Resource... contexts)
Removes the supplied statements from a specific context in this repository, ignoring any context information carried by the statements themselves.<E extends java.lang.Exception>
voidRepositoryConnection. remove(Iteration<? extends Statement,E> statements, Resource... contexts)
Deprecated, for removal: This API element is subject to removal in a future version.void
RepositoryConnection. remove(Resource subject, IRI predicate, Value object, Resource... contexts)
Removes the statement(s) with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts.void
RepositoryConnection. remove(Statement st, Resource... contexts)
Removes the supplied statement from the specified contexts in the repository.default void
RepositoryConnection. remove(RepositoryResult<Statement> statements, Resource... contexts)
Removes the supplied statements from a specific context in this repository, ignoring any context information carried by the statements themselves.long
RepositoryConnection. size(Resource... contexts)
Returns the number of (explicit) statements that are in the specified contexts in this repository. -
Uses of Resource in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base that return types with arguments of type Resource Modifier and Type Method Description RepositoryResult<Resource>
RepositoryConnectionWrapper. getContextIDs()
Methods in org.eclipse.rdf4j.repository.base with parameters of type Resource Modifier and Type Method Description void
AbstractRepositoryConnection. add(java.io.File file, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
AbstractRepositoryConnection. add(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
AbstractRepositoryConnection. add(java.io.Reader reader, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
AbstractRepositoryConnection. add(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
void
AbstractRepositoryConnection. add(java.net.URL url, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
<E extends java.lang.Exception>
voidAbstractRepositoryConnection. add(Iteration<? extends Statement,E> statements, Resource... contexts)
void
AbstractRepositoryConnection. add(Resource subject, IRI predicate, Value object, Resource... contexts)
void
AbstractRepositoryConnection. add(Statement st, Resource... contexts)
void
RepositoryConnectionWrapper. add(java.io.File file, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
RepositoryConnectionWrapper. add(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
RepositoryConnectionWrapper. add(java.io.Reader reader, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
RepositoryConnectionWrapper. add(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
void
RepositoryConnectionWrapper. add(java.net.URL url, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
<E extends java.lang.Exception>
voidRepositoryConnectionWrapper. add(Iteration<? extends Statement,E> statementIter, Resource... contexts)
void
RepositoryConnectionWrapper. add(Resource subject, IRI predicate, Value object, Resource... contexts)
void
RepositoryConnectionWrapper. add(Statement st, Resource... contexts)
protected abstract void
AbstractRepositoryConnection. addWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
protected void
AbstractRepositoryConnection. addWithoutCommit(Statement st, Resource... contexts)
protected void
RepositoryConnectionWrapper. addWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
void
AbstractRepositoryConnection. clear(Resource... contexts)
void
RepositoryConnectionWrapper. clear(Resource... contexts)
void
AbstractRepositoryConnection. export(RDFHandler handler, Resource... contexts)
void
RepositoryConnectionWrapper. exportStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
RepositoryResult<Statement>
RepositoryConnectionWrapper. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
AbstractRepositoryConnection. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
AbstractRepositoryConnection. hasStatement(Statement st, boolean includeInferred, Resource... contexts)
boolean
RepositoryConnectionWrapper. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
RepositoryConnectionWrapper. hasStatement(Statement st, boolean includeInferred, Resource... contexts)
void
AbstractRepositoryConnection. remove(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
<E extends java.lang.Exception>
voidAbstractRepositoryConnection. remove(Iteration<? extends Statement,E> statements, Resource... contexts)
void
AbstractRepositoryConnection. remove(Resource subject, IRI predicate, Value object, Resource... contexts)
void
AbstractRepositoryConnection. remove(Statement st, Resource... contexts)
void
RepositoryConnectionWrapper. remove(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
<E extends java.lang.Exception>
voidRepositoryConnectionWrapper. remove(Iteration<? extends Statement,E> statementIter, Resource... contexts)
void
RepositoryConnectionWrapper. remove(Resource subject, IRI predicate, Value object, Resource... contexts)
void
RepositoryConnectionWrapper. remove(Statement st, Resource... contexts)
protected abstract void
AbstractRepositoryConnection. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
protected void
AbstractRepositoryConnection. removeWithoutCommit(Statement st, Resource... contexts)
protected void
RepositoryConnectionWrapper. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
long
RepositoryConnectionWrapper. size(Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.repository.config
Methods in org.eclipse.rdf4j.repository.config that return Resource Modifier and Type Method Description Resource
AbstractDelegatingRepositoryImplConfig. export(Model model)
Resource
AbstractRepositoryImplConfig. export(Model model)
Resource
RepositoryImplConfig. export(Model model)
Export thisRepositoryImplConfig
to its RDF representationstatic Resource
RepositoryConfigUtil. getContext(RepositoryConnection con, java.lang.String repositoryID)
Deprecated.Methods in org.eclipse.rdf4j.repository.config with parameters of type Resource Modifier and Type Method Description static RepositoryImplConfig
AbstractRepositoryImplConfig. create(Model model, Resource resource)
Utility method to create a newRepositoryImplConfig
by reading data from the suppliedModel
.static RepositoryConfig
RepositoryConfig. create(Model model, Resource repositoryNode)
Creates a newRepositoryConfig
object and initializes it by supplying themodel
andrepositoryNode
to itsparse
method.void
RepositoryConfig. export(Model model, Resource repositoryNode)
Exports the configuration into RDF using the given repositoryNodevoid
AbstractDelegatingRepositoryImplConfig. parse(Model model, Resource resource)
void
AbstractRepositoryImplConfig. parse(Model model, Resource resource)
void
RepositoryConfig. parse(Model model, Resource repositoryNode)
void
RepositoryImplConfig. parse(Model model, Resource resource)
Reads the properties of thisRepositoryImplConfig
from the supplied Model and sets them accordingly. -
Uses of Resource in org.eclipse.rdf4j.repository.contextaware
Methods in org.eclipse.rdf4j.repository.contextaware with parameters of type Resource Modifier and Type Method Description void
ContextAwareConnection. add(java.io.File file, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
ContextAwareConnection. add(java.io.File file, RDFFormat dataFormat, Resource... contexts)
void
ContextAwareConnection. add(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
ContextAwareConnection. add(java.io.InputStream in, RDFFormat dataFormat, Resource... contexts)
void
ContextAwareConnection. add(java.io.Reader reader, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
ContextAwareConnection. add(java.io.Reader reader, RDFFormat dataFormat, Resource... contexts)
void
ContextAwareConnection. add(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
void
ContextAwareConnection. add(java.net.URL url, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
ContextAwareConnection. add(java.net.URL url, RDFFormat dataFormat, Resource... contexts)
<E extends java.lang.Exception>
voidContextAwareConnection. add(Iteration<? extends Statement,E> statementIter, Resource... contexts)
void
ContextAwareConnection. add(Resource subject, IRI predicate, Value object, Resource... contexts)
void
ContextAwareConnection. add(Statement st, Resource... contexts)
void
ContextAwareConnection. clear(Resource... contexts)
void
ContextAwareConnection. export(RDFHandler handler, Resource... contexts)
void
ContextAwareConnection. exportStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
void
ContextAwareConnection. exportStatements(Resource subj, IRI pred, Value obj, RDFHandler handler, Resource... contexts)
Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts.RepositoryResult<Statement>
ContextAwareConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
RepositoryResult<Statement>
ContextAwareConnection. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository.boolean
ContextAwareConnection. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
ContextAwareConnection. hasStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in the specified contexts.boolean
ContextAwareConnection. hasStatement(Statement st, boolean includeInferred, Resource... contexts)
boolean
ContextAwareConnection. hasStatement(Statement st, Resource... contexts)
Checks whether the repository contains the specified statement, optionally in the specified contexts.private boolean
ContextAwareConnection. isAllContext(Resource[] contexts)
private boolean
ContextAwareConnection. isNilContext(Resource[] contexts)
void
ContextAwareConnection. remove(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
<E extends java.lang.Exception>
voidContextAwareConnection. remove(Iteration<? extends Statement,E> statementIter, Resource... contexts)
Removes the supplied statements from a specific context in this repository, ignoring any context information carried by the statements themselves.void
ContextAwareConnection. remove(Resource subject, IRI predicate, Value object, Resource... contexts)
Removes the statement with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts.void
ContextAwareConnection. remove(Statement st, Resource... contexts)
Removes the supplied statement from the specified contexts in the repository.protected void
ContextAwareConnection. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
long
ContextAwareConnection. size(Resource... contexts)
Returns the number of (explicit) statements that are in the specified contexts in this repository. -
Uses of Resource in org.eclipse.rdf4j.repository.contextaware.config
Methods in org.eclipse.rdf4j.repository.contextaware.config that return Resource Modifier and Type Method Description Resource
ContextAwareConfig. export(Model model)
Methods in org.eclipse.rdf4j.repository.contextaware.config with parameters of type Resource Modifier and Type Method Description void
ContextAwareConfig. parse(Model model, Resource resource)
-
Uses of Resource in org.eclipse.rdf4j.repository.evaluation
Methods in org.eclipse.rdf4j.repository.evaluation with parameters of type Resource Modifier and Type Method Description CloseableIteration<? extends Statement,QueryEvaluationException>
RepositoryTripleSource. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.repository.event
Methods in org.eclipse.rdf4j.repository.event with parameters of type Resource Modifier and Type Method Description boolean
RepositoryConnectionInterceptor. add(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
void
RepositoryConnectionListener. add(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
boolean
RepositoryConnectionInterceptor. clear(RepositoryConnection conn, Resource... contexts)
void
RepositoryConnectionListener. clear(RepositoryConnection conn, Resource... contexts)
boolean
RepositoryConnectionInterceptor. remove(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
void
RepositoryConnectionListener. remove(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.repository.event.base
Methods in org.eclipse.rdf4j.repository.event.base with parameters of type Resource Modifier and Type Method Description boolean
RepositoryConnectionInterceptorAdapter. add(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
void
RepositoryConnectionListenerAdapter. add(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
void
InterceptingRepositoryConnectionWrapper. addWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
void
NotifyingRepositoryConnectionWrapper. addWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
void
InterceptingRepositoryConnectionWrapper. clear(Resource... contexts)
void
NotifyingRepositoryConnectionWrapper. clear(Resource... contexts)
boolean
RepositoryConnectionInterceptorAdapter. clear(RepositoryConnection conn, Resource... contexts)
void
RepositoryConnectionListenerAdapter. clear(RepositoryConnection conn, Resource... contexts)
boolean
RepositoryConnectionInterceptorAdapter. remove(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
void
RepositoryConnectionListenerAdapter. remove(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
void
InterceptingRepositoryConnectionWrapper. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
void
NotifyingRepositoryConnectionWrapper. removeWithoutCommit(Resource subj, IRI pred, Value obj, Resource... ctx)
-
Uses of Resource in org.eclipse.rdf4j.repository.event.util
Methods in org.eclipse.rdf4j.repository.event.util with parameters of type Resource Modifier and Type Method Description void
DebugRepositoryConnectionListener. add(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
void
DebugRepositoryConnectionListener. clear(RepositoryConnection conn, Resource... contexts)
void
DebugRepositoryConnectionListener. remove(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.repository.filters
Methods in org.eclipse.rdf4j.repository.filters with parameters of type Resource Modifier and Type Method Description boolean
AccurateRepositoryBloomFilter. mayHaveStatement(RepositoryConnection conn, Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
InaccurateRepositoryBloomFilter. mayHaveStatement(RepositoryConnection conn, Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
RepositoryBloomFilter. mayHaveStatement(RepositoryConnection conn, Resource subj, IRI pred, Value obj, Resource... ctxs)
Returns true if the repository may have such a statement or false if it definitely does not. -
Uses of Resource in org.eclipse.rdf4j.repository.http
Methods in org.eclipse.rdf4j.repository.http that return types with arguments of type Resource Modifier and Type Method Description RepositoryResult<Resource>
HTTPRepositoryConnection. getContextIDs()
Methods in org.eclipse.rdf4j.repository.http with parameters of type Resource Modifier and Type Method Description void
HTTPRepositoryConnection. add(java.io.File file, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
HTTPRepositoryConnection. add(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
HTTPRepositoryConnection. add(java.io.Reader reader, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
HTTPRepositoryConnection. add(java.net.URL url, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
HTTPRepositoryConnection. add(Resource subject, IRI predicate, Value object, Resource... contexts)
void
HTTPRepositoryConnection. add(Statement st, Resource... contexts)
protected void
HTTPRepositoryConnection. addWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
void
HTTPRepositoryConnection. clear(Resource... contexts)
void
HTTPRepositoryConnection. exportStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
RepositoryResult<Statement>
HTTPRepositoryConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
protected void
HTTPRepositoryConnection. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
long
HTTPRepositoryConnection. size(Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.repository.http.config
Methods in org.eclipse.rdf4j.repository.http.config that return Resource Modifier and Type Method Description Resource
HTTPRepositoryConfig. export(Model graph)
Methods in org.eclipse.rdf4j.repository.http.config with parameters of type Resource Modifier and Type Method Description void
HTTPRepositoryConfig. parse(Model model, Resource implNode)
-
Uses of Resource in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail that return types with arguments of type Resource Modifier and Type Method Description RepositoryResult<Resource>
SailRepositoryConnection. getContextIDs()
Methods in org.eclipse.rdf4j.repository.sail with parameters of type Resource Modifier and Type Method Description protected void
SailRepositoryConnection. addWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
void
SailRepositoryConnection. clear(Resource... contexts)
void
SailRepositoryConnection. exportStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
RepositoryResult<Statement>
SailRepositoryConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
SailRepositoryConnection. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
protected void
SailRepositoryConnection. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
long
SailRepositoryConnection. size(Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.repository.sail.config
Methods in org.eclipse.rdf4j.repository.sail.config that return Resource Modifier and Type Method Description Resource
ProxyRepositoryConfig. export(Model model)
Resource
SailRepositoryConfig. export(Model model)
Methods in org.eclipse.rdf4j.repository.sail.config with parameters of type Resource Modifier and Type Method Description void
ProxyRepositoryConfig. parse(Model model, Resource implNode)
void
SailRepositoryConfig. parse(Model model, Resource repImplNode)
-
Uses of Resource in org.eclipse.rdf4j.repository.sail.helpers
Fields in org.eclipse.rdf4j.repository.sail.helpers declared as Resource Modifier and Type Field Description private Resource[]
RDFSailRemover. contexts
The contexts to remove the statements from.Methods in org.eclipse.rdf4j.repository.sail.helpers that return Resource Modifier and Type Method Description Resource[]
RDFSailRemover. getContexts()
Gets the contexts that this RDFRemover enforces upon all statements that are reported to it (in case enforcesContext() returns true).Methods in org.eclipse.rdf4j.repository.sail.helpers with parameters of type Resource Modifier and Type Method Description protected void
RDFSailInserter. addStatement(Resource subj, IRI pred, Value obj, Resource ctxt)
private void
RDFSailInserter. addStatement(UpdateContext uc, Resource subj, IRI pred, Value obj, Resource... ctxts)
void
RDFSailRemover. enforceContext(Resource... contexts)
Enforces the supplied contexts upon all statements that are reported to this RDFSailRemover. -
Uses of Resource in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql that return types with arguments of type Resource Modifier and Type Method Description RepositoryResult<Resource>
SPARQLConnection. getContextIDs()
Methods in org.eclipse.rdf4j.repository.sparql with parameters of type Resource Modifier and Type Method Description void
SPARQLConnection. add(java.io.File file, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
SPARQLConnection. add(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
SPARQLConnection. add(java.io.Reader reader, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
SPARQLConnection. add(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
void
SPARQLConnection. add(java.net.URL url, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
void
SPARQLConnection. add(Statement st, Resource... contexts)
protected void
SPARQLConnection. addWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
protected void
SPARQLConnection. addWithoutCommit(Statement st, Resource... contexts)
void
SPARQLConnection. clear(Resource... contexts)
private void
SPARQLConnection. createBGP(java.lang.StringBuilder qb, Resource subject, IRI predicate, Value object)
private java.lang.String
SPARQLConnection. createDeleteDataCommand(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
private java.lang.String
SPARQLConnection. createDeletePatternCommand(Resource subject, IRI predicate, Value object, Resource[] contexts)
private java.lang.String
SPARQLConnection. createInsertDataCommand(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
void
SPARQLConnection. exportStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
private RepositoryResult<Statement>
SPARQLConnection. getStatementGeneral(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
RepositoryResult<Statement>
SPARQLConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
private RepositoryResult<Statement>
SPARQLConnection. getStatementsQuadMode(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
private RepositoryResult<Statement>
SPARQLConnection. getStatementsSingleTriple(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
SPARQLConnection. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
void
SPARQLConnection. remove(java.lang.Iterable<? extends Statement> statements, Resource... contexts)
void
SPARQLConnection. remove(Statement st, Resource... contexts)
protected void
SPARQLConnection. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
protected void
SPARQLConnection. removeWithoutCommit(Statement st, Resource... contexts)
private void
SPARQLConnection. setBindings(Query query, Resource subj, IRI pred, Value obj, Resource... contexts)
long
SPARQLConnection. size(Resource... contexts)
protected Iteration<Statement,QueryEvaluationException>
SPARQLConnection. toStatementIteration(TupleQueryResult iter, Resource subj, IRI pred, Value obj)
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Resource in org.eclipse.rdf4j.repository.sparql.config
Methods in org.eclipse.rdf4j.repository.sparql.config that return Resource Modifier and Type Method Description Resource
SPARQLRepositoryConfig. export(Model m)
Methods in org.eclipse.rdf4j.repository.sparql.config with parameters of type Resource Modifier and Type Method Description void
SPARQLRepositoryConfig. parse(Model m, Resource implNode)
-
Uses of Resource in org.eclipse.rdf4j.repository.util
Fields in org.eclipse.rdf4j.repository.util declared as Resource Modifier and Type Field Description private Resource
RDFRemover. context
The context to remove the statements from; null to indicate the null context.protected Resource[]
AbstractRDFInserter. contexts
The contexts to add the statements to.Methods in org.eclipse.rdf4j.repository.util that return Resource Modifier and Type Method Description Resource
RDFRemover. getContext()
Gets the context identifier that this RDFRemover enforces upon all statements that are reported to it (in case enforcesContext() returns true).Resource[]
AbstractRDFInserter. getContexts()
Gets the contexts that this RDFInserter enforces upon all statements that are reported to it (in case enforcesContext() returns true).Methods in org.eclipse.rdf4j.repository.util with parameters of type Resource Modifier and Type Method Description protected abstract void
AbstractRDFInserter. addStatement(Resource subj, IRI pred, Value obj, Resource ctxt)
protected void
RDFInserter. addStatement(Resource subj, IRI pred, Value obj, Resource ctxt)
static void
Connections. consumeRDFCollection(RepositoryConnection conn, Resource head, java.util.function.Consumer<Statement> collectionConsumer, Resource... contexts)
Retrieve allStatement
s that together form the RDF Collection starting with the supplied start resource and send them to the suppliedConsumer
.void
AbstractRDFInserter. enforceContext(Resource... contexts)
Enforces the supplied contexts upon all statements that are reported to this RDFInserter.void
RDFRemover. enforceContext(Resource context)
Enforces the supplied context upon all statements that are reported to this RDFRemover.static <C extends java.util.Collection<Statement>>
CConnections. getRDFCollection(RepositoryConnection conn, Resource head, C statementCollection, Resource... contexts)
Retrieve allStatement
s that together form the RDF Collection starting with the supplied starting resource.static java.util.Optional<Statement>
Connections. getStatement(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
Retrieve a singleStatement
matching with the supplied subject, predicate, object and context(s) from the givenRepositoryConnection
. -
Uses of Resource in org.eclipse.rdf4j.rio
Methods in org.eclipse.rdf4j.rio with parameters of type Resource Modifier and Type Method Description static Model
Rio. parse(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, ParserConfig settings, Resource... contexts)
Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, ModelFactory modelFactory, Resource... contexts)
Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.InputStream in, java.lang.String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, Resource... contexts)
Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.InputStream in, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.InputStream in, RDFFormat dataFormat, ParserConfig settings, Resource... contexts)
Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.Reader reader, java.lang.String baseURI, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from aReader
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.Reader reader, java.lang.String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, ModelFactory modelFactory, Resource... contexts)
Adds RDF data from aReader
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.Reader reader, java.lang.String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, Resource... contexts)
Adds RDF data from aReader
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.Reader reader, RDFFormat dataFormat, Resource... contexts)
Adds RDF data from aReader
to aModel
, optionally to one or more named contexts.static Model
Rio. parse(java.io.Reader reader, RDFFormat dataFormat, ParserConfig settings, Resource... contexts)
Adds RDF data from aReader
to aModel
, optionally to one or more named contexts. -
Uses of Resource in org.eclipse.rdf4j.rio.binary
Methods in org.eclipse.rdf4j.rio.binary that return Resource Modifier and Type Method Description private Resource
BinaryRDFParser. readBNode()
-
Uses of Resource in org.eclipse.rdf4j.rio.hdt
Methods in org.eclipse.rdf4j.rio.hdt that return Resource Modifier and Type Method Description private Resource
HDTParser. createSubject(byte[] b)
Create subject IRI or blank node -
Uses of Resource in org.eclipse.rdf4j.rio.helpers
Fields in org.eclipse.rdf4j.rio.helpers declared as Resource Modifier and Type Field Description private Resource[]
ContextStatementCollector. contexts
Fields in org.eclipse.rdf4j.rio.helpers with type parameters of type Resource Modifier and Type Field Description private java.util.Set<Resource>
BufferedGroupingRDFHandler. contexts
Methods in org.eclipse.rdf4j.rio.helpers that return Resource Modifier and Type Method Description protected Resource
AbstractRDFParser. createNode()
protected Resource
AbstractRDFParser. createNode(java.lang.String nodeID)
Resource
RDFStarEncodingStatement. getContext()
Resource
RDFStarEncodingStatement. getSubject()
static Resource
NTriplesUtil. parseResource(java.lang.String nTriplesResource, ValueFactory valueFactory)
Parses an N-Triples resource, creates an object for it using the supplied ValueFactory and returns this object.Methods in org.eclipse.rdf4j.rio.helpers with parameters of type Resource Modifier and Type Method Description static void
NTriplesUtil. append(Resource resource, java.lang.Appendable appendable)
Appends the N-Triples representation of the givenResource
to the givenAppendable
.protected Statement
AbstractRDFParser. createStatement(Resource subj, IRI pred, Value obj)
Creates a newStatement
object with the supplied components.protected Statement
AbstractRDFParser. createStatement(Resource subj, IRI pred, Value obj, Resource context)
Creates a newStatement
object with the supplied components.Statement
RDFStarDecodingValueFactory. createStatement(Resource subject, IRI predicate, Value object)
Statement
RDFStarDecodingValueFactory. createStatement(Resource subject, IRI predicate, Value object, Resource context)
Triple
RDFStarDecodingValueFactory. createTriple(Resource subject, IRI predicate, Value object)
static java.lang.String
NTriplesUtil. toNTriplesString(Resource resource)
Creates an N-Triples string for the supplied resource.Constructors in org.eclipse.rdf4j.rio.helpers with parameters of type Resource Constructor Description ContextStatementCollector(java.util.Collection<Statement> statements, java.util.Map<java.lang.String,java.lang.String> namespaces, ValueFactory vf, Resource... contexts)
Creates a new StatementCollector that stores reported statements and namespaces in the supplied containers.ContextStatementCollector(java.util.Collection<Statement> statements, ValueFactory vf, Resource... contexts)
Creates a new StatementCollector that stores reported statements in the supplied collection and that uses a new LinkedHashMap to store the reported namespaces.ContextStatementCollector(ValueFactory vf, Resource... contexts)
Creates a new StatementCollector that uses a new ArrayList to store the reported statements and a new LinkedHashMap to store the reported namespaces. -
Uses of Resource in org.eclipse.rdf4j.rio.jsonld
Fields in org.eclipse.rdf4j.rio.jsonld with type parameters of type Resource Modifier and Type Field Description private java.util.function.Supplier<Resource>
JSONLDInternalTripleCallback. anonymousBNodeCreator
private java.util.function.Function<java.lang.String,Resource>
JSONLDInternalTripleCallback. namedBNodeCreator
Methods in org.eclipse.rdf4j.rio.jsonld that return Resource Modifier and Type Method Description private Resource
JSONLDInternalTripleCallback. createResource(java.lang.String resource)
Methods in org.eclipse.rdf4j.rio.jsonld with parameters of type Resource Modifier and Type Method Description private java.lang.String
JSONLDInternalRDFParser. getResourceValue(Resource subject)
Constructor parameters in org.eclipse.rdf4j.rio.jsonld with type arguments of type Resource Constructor Description JSONLDInternalTripleCallback(RDFHandler nextHandler, ValueFactory vf, ParserConfig parserConfig, ParseErrorListener parseErrorListener, java.util.function.Function<java.lang.String,Resource> namedBNodeCreator, java.util.function.Supplier<Resource> anonymousBNodeCreator)
JSONLDInternalTripleCallback(RDFHandler nextHandler, ValueFactory vf, ParserConfig parserConfig, ParseErrorListener parseErrorListener, java.util.function.Function<java.lang.String,Resource> namedBNodeCreator, java.util.function.Supplier<Resource> anonymousBNodeCreator)
-
Uses of Resource in org.eclipse.rdf4j.rio.nquads
Fields in org.eclipse.rdf4j.rio.nquads declared as Resource Modifier and Type Field Description protected Resource
NQuadsParser. context
-
Uses of Resource in org.eclipse.rdf4j.rio.ntriples
Fields in org.eclipse.rdf4j.rio.ntriples declared as Resource Modifier and Type Field Description protected Resource
NTriplesParser. subject
Methods in org.eclipse.rdf4j.rio.ntriples that return Resource Modifier and Type Method Description protected Resource
NTriplesParser. parseNode()
-
Uses of Resource in org.eclipse.rdf4j.rio.rdfjson
Fields in org.eclipse.rdf4j.rio.rdfjson declared as Resource Modifier and Type Field Description private Resource
RDFJSONWriter. lastWrittenSubject
Methods in org.eclipse.rdf4j.rio.rdfjson with parameters of type Resource Modifier and Type Method Description static java.lang.String
RDFJSONWriter. resourceToString(Resource uriOrBnode)
Returns the correct syntax for a Resource, depending on whether it is a URI or a Blank Node (ie, BNode)Method parameters in org.eclipse.rdf4j.rio.rdfjson with type arguments of type Resource Modifier and Type Method Description static void
RDFJSONWriter. writeObject(Value object, java.util.Set<Resource> contexts, com.fasterxml.jackson.core.JsonGenerator jg)
Helper method to reduce complexity of the JSON serialisation algorithm Any null contexts will only be serialised to JSON if there are also non-null contexts in the contexts array -
Uses of Resource in org.eclipse.rdf4j.rio.rdfxml
Fields in org.eclipse.rdf4j.rio.rdfxml declared as Resource Modifier and Type Field Description private Resource
RDFXMLParser.PropertyElement. lastListResource
The resource that was used to append the last part of an rdf:List.protected Resource
RDFXMLWriter. lastWrittenSubject
private Resource
RDFXMLParser.NodeElement. resource
Methods in org.eclipse.rdf4j.rio.rdfxml that return Resource Modifier and Type Method Description protected Resource
RDFXMLParser. createNode(java.lang.String nodeID)
Resource
RDFXMLParser.PropertyElement. getLastListResource()
private Resource
RDFXMLParser. getNodeResource(Atts atts)
Retrieves the resource of a node element (subject or object) using relevant attributes (rdf:ID, rdf:about and rdf:nodeID) from its attributes list.private Resource
RDFXMLParser. getPropertyResource(Atts atts)
Retrieves the object resource of a property element using relevant attributes (rdf:resource and rdf:nodeID) from its attributes list.Resource
RDFXMLParser.NodeElement. getResource()
Methods in org.eclipse.rdf4j.rio.rdfxml with parameters of type Resource Modifier and Type Method Description private void
RDFXMLParser. reifyStatement(Resource reifNode, Resource subj, IRI pred, Value obj)
private void
RDFXMLParser. reportStatement(Resource subject, IRI predicate, Value object)
Reports a stament to the configured RDFHandlerException.void
RDFXMLParser.PropertyElement. setLastListResource(Resource resource)
Constructors in org.eclipse.rdf4j.rio.rdfxml with parameters of type Resource Constructor Description NodeElement(Resource resource)
-
Uses of Resource in org.eclipse.rdf4j.rio.rdfxml.util
Fields in org.eclipse.rdf4j.rio.rdfxml.util declared as Resource Modifier and Type Field Description private Resource
RDFXMLPrettyWriter.Node. nextLi
Methods in org.eclipse.rdf4j.rio.rdfxml.util that return Resource Modifier and Type Method Description (package private) Resource
RDFXMLPrettyWriter.Node. nextLi()
Methods in org.eclipse.rdf4j.rio.rdfxml.util with parameters of type Resource Modifier and Type Method Description private void
RDFXMLPrettyWriter. popStacks(Resource newSubject)
Write out the stacks until we find subject. -
Uses of Resource in org.eclipse.rdf4j.rio.trig
Fields in org.eclipse.rdf4j.rio.trig declared as Resource Modifier and Type Field Description private Resource
TriGParser. context
private Resource
TriGWriter. currentContext
Methods in org.eclipse.rdf4j.rio.trig that return Resource Modifier and Type Method Description protected Resource
TriGParser. getContext()
Methods in org.eclipse.rdf4j.rio.trig with parameters of type Resource Modifier and Type Method Description private static boolean
TriGWriter. contextsEquals(Resource context1, Resource context2)
protected void
TriGParser. reportStatement(Resource subj, IRI pred, Value obj)
protected void
TriGParser. setContext(Resource context)
protected void
TriGWriter. writeStatement(Resource subj, IRI pred, Value obj, Resource context, boolean canShortenSubject, boolean canShortenObject)
-
Uses of Resource in org.eclipse.rdf4j.rio.trigstar
Methods in org.eclipse.rdf4j.rio.trigstar with parameters of type Resource Modifier and Type Method Description protected void
TriGStarParser. setContext(Resource context)
-
Uses of Resource in org.eclipse.rdf4j.rio.trix
Fields in org.eclipse.rdf4j.rio.trix declared as Resource Modifier and Type Field Description private Resource
TriXParser.TriXSAXHandler. currentContext
private Resource
TriXWriter. currentContext
Methods in org.eclipse.rdf4j.rio.trix with parameters of type Resource Modifier and Type Method Description private static boolean
TriXWriter. contextsEquals(Resource context1, Resource context2)
-
Uses of Resource in org.eclipse.rdf4j.rio.turtle
Fields in org.eclipse.rdf4j.rio.turtle declared as Resource Modifier and Type Field Description private Resource
ArrangedWriter.SubjectInContext. context
protected Resource
TurtleWriter. lastWrittenSubject
private Resource
ArrangedWriter.SubjectInContext. subject
protected Resource
TurtleParser. subject
Fields in org.eclipse.rdf4j.rio.turtle with type parameters of type Resource Modifier and Type Field Description private java.util.Deque<Resource>
TurtleWriter. stack
Methods in org.eclipse.rdf4j.rio.turtle that return Resource Modifier and Type Method Description Resource
ArrangedWriter.SubjectInContext. getContext()
Resource
ArrangedWriter.SubjectInContext. getSubject()
protected Resource
TurtleParser. parseCollection()
Parses a collection, e.g.protected Resource
TurtleParser. parseImplicitBlank()
Parses an implicit blank node.protected Resource
TurtleParser. parseNodeID()
Parses a blank node ID, e.g.Methods in org.eclipse.rdf4j.rio.turtle that return types with arguments of type Resource Modifier and Type Method Description private java.util.Optional<Resource>
TurtleWriter. nextSubject(Model contextData, java.util.Set<Resource> processedSubjects)
Methods in org.eclipse.rdf4j.rio.turtle with parameters of type Resource Modifier and Type Method Description private void
TurtleWriter. closeNestedResources(Resource subj)
private boolean
TurtleWriter. isWellFormedCollection(Resource subj)
Check that the collection started with the supplied subject node is a well-formed RDF Collection.private void
TurtleWriter. processPredicate(Model contextData, Resource subject, IRI predicate, java.util.Set<Resource> processedSubjects, java.util.Set<IRI> processedPredicates)
private void
TurtleWriter. processSubject(Model contextData, Resource subject, java.util.Set<Resource> processedSubjects)
protected void
TurtleParser. reportStatement(Resource subj, IRI pred, Value obj)
protected void
TurtleWriter. writeResource(Resource res)
Deprecated.UseTurtleWriter.writeResource(Resource, boolean)
instead.protected void
TurtleWriter. writeResource(Resource res, boolean canShorten)
protected void
TurtleWriter. writeStatement(Resource subj, IRI pred, Value obj, Resource context, boolean canShortenSubjectBNode, boolean canShortenObjectBNode)
Method parameters in org.eclipse.rdf4j.rio.turtle with type arguments of type Resource Modifier and Type Method Description private java.util.Optional<Resource>
TurtleWriter. nextSubject(Model contextData, java.util.Set<Resource> processedSubjects)
private void
TurtleWriter. processPredicate(Model contextData, Resource subject, IRI predicate, java.util.Set<Resource> processedSubjects, java.util.Set<IRI> processedPredicates)
private void
TurtleWriter. processSubject(Model contextData, Resource subject, java.util.Set<Resource> processedSubjects)
Constructors in org.eclipse.rdf4j.rio.turtle with parameters of type Resource Constructor Description SubjectInContext(Resource subject, Resource context)
-
Uses of Resource in org.eclipse.rdf4j.sail
Methods in org.eclipse.rdf4j.sail that return types with arguments of type Resource Modifier and Type Method Description CloseableIteration<? extends Resource,SailException>
SailConnection. getContextIDs()
Returns the set of all unique context identifiers that are used to store statements.Methods in org.eclipse.rdf4j.sail with parameters of type Resource Modifier and Type Method Description void
SailConnection. addStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
Adds a statement to the store.void
SailConnection. addStatement(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts)
Adds a statement to the store.void
SailConnection. clear(Resource... contexts)
Removes all statements from the specified/all contexts.CloseableIteration<? extends Statement,SailException>
SailConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
Gets all statements from the specified contexts that have a specific subject, predicate and/or object.default boolean
SailConnection. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
Determines if the store contains any statements from the specified contexts that have a specific subject, predicate and/or object.void
SailConnection. removeStatement(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts)
Removes all statements matching the specified subject, predicate and object from the repository.void
SailConnection. removeStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
Removes all statements matching the specified subject, predicate and object from the repository.long
SailConnection. size(Resource... contexts)
Returns the number of (explicit) statements in the store, or in specific contexts. -
Uses of Resource in org.eclipse.rdf4j.sail.base
Fields in org.eclipse.rdf4j.sail.base declared as Resource Modifier and Type Field Description private Resource
Changeset.SimpleStatementPattern. context
(package private) static Resource[]
SailSourceConnection. NULL_CTX
private Resource
Changeset.SimpleStatementPattern. subject
Fields in org.eclipse.rdf4j.sail.base with type parameters of type Resource Modifier and Type Field Description private java.util.Set<Resource>
Changeset. approvedContexts
Set of contexts of theChangeset.approved
statements.private java.util.Set<Resource>
Changeset. deprecatedContexts
Set of contexts that were passed toChangeset.clear(Resource...)
.Methods in org.eclipse.rdf4j.sail.base that return Resource Modifier and Type Method Description Resource
Changeset.SimpleStatementPattern. getContext()
Resource
Changeset.SimpleStatementPattern. getSubject()
Methods in org.eclipse.rdf4j.sail.base that return types with arguments of type Resource Modifier and Type Method Description java.util.Set<Resource>
Changeset. getApprovedContexts()
CloseableIteration<? extends Resource,SailException>
DelegatingSailDataset. getContextIDs()
CloseableIteration<? extends Resource,SailException>
ObservingSailDataset. getContextIDs()
CloseableIteration<? extends Resource,SailException>
SailDataset. getContextIDs()
Returns the set of all unique context identifiers that are used to store statements.CloseableIteration<? extends Resource,SailException>
SailDatasetImpl. getContextIDs()
CloseableIteration<? extends Resource,SailException>
UnionSailDataset. getContextIDs()
protected CloseableIteration<? extends Resource,SailException>
SailSourceConnection. getContextIDsInternal()
java.util.Set<Resource>
Changeset. getDeprecatedContexts()
Methods in org.eclipse.rdf4j.sail.base with parameters of type Resource Modifier and Type Method Description private void
SailSourceConnection. add(Resource subj, IRI pred, Value obj, SailDataset dataset, SailSink sink, Resource... contexts)
boolean
SailSourceConnection. addInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
void
SailSourceConnection. addStatement(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts)
void
Changeset. approve(Resource subj, IRI pred, Value obj, Resource ctx)
void
SailSink. approve(Resource subj, IRI pred, Value obj, Resource ctx)
Adds a statement to the store.void
Changeset. clear(Resource... contexts)
void
SailSink. clear(Resource... contexts)
Removes all statements from the specified/all contexts.void
SailSourceConnection. clearInferred(Resource... contexts)
protected void
SailSourceConnection. clearInternal(Resource... contexts)
default void
SailSink. deprecate(Resource subj, IRI pred, Value obj, Resource ctx)
Deprecated.default boolean
SailSink. deprecateByQuery(Resource subj, IRI pred, Value obj, Resource[] contexts)
Removes all statements with the specified subject, predicate, object, and context.(package private) java.lang.Iterable<Statement>
Changeset. getApprovedStatements(Resource subj, IRI pred, Value obj, Resource[] contexts)
(package private) java.lang.Iterable<Triple>
Changeset. getApprovedTriples(Resource subj, IRI pred, Value obj)
CloseableIteration<? extends Triple,QueryEvaluationException>
SailDatasetTripleSource. getRdfStarTriples(Resource subj, IRI pred, Value obj)
CloseableIteration<? extends Statement,SailException>
DelegatingSailDataset. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
CloseableIteration<? extends Statement,SailException>
ObservingSailDataset. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
CloseableIteration<? extends Statement,SailException>
SailDataset. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
Gets all statements that have a specific subject, predicate and/or object.CloseableIteration<? extends Statement,SailException>
SailDatasetImpl. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
CloseableIteration<? extends Statement,QueryEvaluationException>
SailDatasetTripleSource. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
CloseableIteration<? extends Statement,SailException>
UnionSailDataset. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
protected CloseableIteration<? extends Statement,SailException>
SailSourceConnection. getStatementsInternal(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
CloseableIteration<? extends Triple,SailException>
DelegatingSailDataset. getTriples(Resource subj, IRI pred, Value obj)
default 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.CloseableIteration<? extends Triple,SailException>
SailDatasetImpl. getTriples(Resource subj, IRI pred, Value obj)
CloseableIteration<? extends Triple,SailException>
UnionSailDataset. getTriples(Resource subj, IRI pred, Value obj)
(package private) boolean
Changeset. hasApproved(Resource subj, IRI pred, Value obj, Resource[] contexts)
(package private) boolean
Changeset. hasDeprecated(Resource subj, IRI pred, Value obj, Resource[] contexts)
private boolean
SailSourceConnection. hasStatement(SailDataset dataset, Resource subj, IRI pred, Value obj, Resource... contexts)
void
Changeset. observe(Resource subj, IRI pred, Value obj, Resource context)
void
Changeset. observe(Resource subj, IRI pred, Value obj, Resource... contexts)
default void
SailSink. observe(Resource subj, IRI pred, Value obj, Resource context)
Called to indicate matching statements have been observed and must not change their state until after thisSailSink
is committed, iff this was opened in an isolation level compatible withIsolationLevels.SERIALIZABLE
.void
SailSink. observe(Resource subj, IRI pred, Value obj, Resource... contexts)
Called to indicate matching statements have been observed and must not change their state until after thisSailSink
is committed, iff this was opened in an isolation level compatible withIsolationLevels.SERIALIZABLE
.private boolean
SailSourceConnection. remove(Resource subj, IRI pred, Value obj, SailDataset dataset, SailSink sink, Resource... contexts)
boolean
SailSourceConnection. removeInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
void
SailSourceConnection. removeStatement(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts)
protected long
SailSourceConnection. sizeInternal(Resource... contexts)
Constructors in org.eclipse.rdf4j.sail.base with parameters of type Resource Constructor Description SimpleStatementPattern(Resource subject, IRI predicate, Value object, Resource context, boolean allContexts)
-
Uses of Resource in org.eclipse.rdf4j.sail.base.config
Methods in org.eclipse.rdf4j.sail.base.config that return Resource Modifier and Type Method Description Resource
BaseSailConfig. export(Model graph)
Methods in org.eclipse.rdf4j.sail.base.config with parameters of type Resource Modifier and Type Method Description void
BaseSailConfig. parse(Model graph, Resource implNode)
-
Uses of Resource in org.eclipse.rdf4j.sail.config
Methods in org.eclipse.rdf4j.sail.config that return Resource Modifier and Type Method Description Resource
AbstractDelegatingSailImplConfig. export(Model m)
Resource
AbstractSailImplConfig. export(Model m)
Resource
SailImplConfig. export(Model graph)
Methods in org.eclipse.rdf4j.sail.config with parameters of type Resource Modifier and Type Method Description void
AbstractDelegatingSailImplConfig. parse(Model m, Resource implNode)
void
AbstractSailImplConfig. parse(Model m, Resource implNode)
void
SailImplConfig. parse(Model graph, Resource implNode)
static SailImplConfig
SailConfigUtil. parseRepositoryImpl(Model m, Resource implNode)
-
Uses of Resource in org.eclipse.rdf4j.sail.evaluation
Methods in org.eclipse.rdf4j.sail.evaluation with parameters of type Resource Modifier and Type Method Description CloseableIteration<? extends Statement,QueryEvaluationException>
SailTripleSource. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.sail.helpers
Fields in org.eclipse.rdf4j.sail.helpers declared as Resource Modifier and Type Field Description private Resource
AbstractSailConnection.WildStatement. context
The statement's context, if applicable.private Resource
AbstractSailConnection.WildStatement. subject
The statement's subject.Methods in org.eclipse.rdf4j.sail.helpers that return Resource Modifier and Type Method Description Resource
AbstractSailConnection.WildStatement. getContext()
Resource
AbstractSailConnection.WildStatement. getSubject()
Methods in org.eclipse.rdf4j.sail.helpers that return types with arguments of type Resource Modifier and Type Method Description CloseableIteration<? extends Resource,SailException>
AbstractSailConnection. getContextIDs()
CloseableIteration<? extends Resource,SailException>
SailConnectionWrapper. getContextIDs()
protected abstract CloseableIteration<? extends Resource,SailException>
AbstractSailConnection. getContextIDsInternal()
Methods in org.eclipse.rdf4j.sail.helpers with parameters of type Resource Modifier and Type Method Description void
AbstractSailConnection. addStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
void
AbstractSailConnection. addStatement(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts)
The default implementation buffers added statements until the update operation is complete.void
SailConnectionWrapper. addStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
void
SailConnectionWrapper. addStatement(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts)
protected abstract void
AbstractSailConnection. addStatementInternal(Resource subj, IRI pred, Value obj, Resource... contexts)
void
AbstractSailConnection. clear(Resource... contexts)
void
SailConnectionWrapper. clear(Resource... contexts)
protected abstract void
AbstractSailConnection. clearInternal(Resource... contexts)
CloseableIteration<? extends Statement,SailException>
AbstractSailConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
CloseableIteration<? extends Statement,SailException>
SailConnectionWrapper. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
protected abstract CloseableIteration<? extends Statement,SailException>
AbstractSailConnection. getStatementsInternal(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
AbstractSailConnection. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
SailConnectionWrapper. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
protected boolean
AbstractSailConnection. hasStatementInternal(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource[] contexts)
void
AbstractSailConnection. removeStatement(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts)
The default implementation buffers removed statements until the update operation is complete.void
SailConnectionWrapper. removeStatement(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts)
void
AbstractSailConnection. removeStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
void
SailConnectionWrapper. removeStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
protected abstract void
AbstractSailConnection. removeStatementsInternal(Resource subj, IRI pred, Value obj, Resource... contexts)
long
AbstractSailConnection. size(Resource... contexts)
long
SailConnectionWrapper. size(Resource context)
long
SailConnectionWrapper. size(Resource... contexts)
protected abstract long
AbstractSailConnection. sizeInternal(Resource... contexts)
Constructors in org.eclipse.rdf4j.sail.helpers with parameters of type Resource Constructor Description WildStatement(Resource subject, IRI predicate, Value object)
Creates a new Statement with the supplied subject, predicate and object.WildStatement(Resource subject, IRI predicate, Value object, Resource context)
Creates a new Statement with the supplied subject, predicate and object for the specified associated context. -
Uses of Resource in org.eclipse.rdf4j.sail.inferencer
Methods in org.eclipse.rdf4j.sail.inferencer that return types with arguments of type Resource Modifier and Type Method Description CloseableIteration<? extends Resource,SailException>
InferencerConnectionWrapper. getContextIDs()
CallsInferencerConnectionWrapper.flushUpdates()
before forwarding the call to the wrapped connection.Methods in org.eclipse.rdf4j.sail.inferencer with parameters of type Resource Modifier and Type Method Description boolean
InferencerConnection. addInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
Adds an inferred statement to a specific context.boolean
InferencerConnectionWrapper. addInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
void
InferencerConnection. clearInferred(Resource... contexts)
Removes all inferred statements from the specified/all contexts.void
InferencerConnectionWrapper. clearInferred(Resource... contexts)
CloseableIteration<? extends Statement,SailException>
InferencerConnectionWrapper. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
CallsInferencerConnectionWrapper.flushUpdates()
before forwarding the call to the wrapped connection.boolean
InferencerConnectionWrapper. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
InferencerConnection. removeInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
Removes an inferred statement from a specific context.boolean
InferencerConnectionWrapper. removeInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
long
InferencerConnectionWrapper. size(Resource... contexts)
CallsInferencerConnectionWrapper.flushUpdates()
before forwarding the call to the wrapped connection. -
Uses of Resource in org.eclipse.rdf4j.sail.inferencer.fc
Fields in org.eclipse.rdf4j.sail.inferencer.fc declared as Resource Modifier and Type Field Description private static Resource[]
SchemaCachingRDFSInferencer. DEFAULT_CONTEXT
private static Resource[]
SchemaCachingRDFSInferencerConnection. DEFAULT_CONTEXT
Fields in org.eclipse.rdf4j.sail.inferencer.fc with type parameters of type Resource Modifier and Type Field Description private java.util.Map<Resource,java.util.Set<Resource>>
SchemaCachingRDFSInferencer. calculatedDomain
private java.util.Map<Resource,java.util.Set<Resource>>
SchemaCachingRDFSInferencer. calculatedDomain
private java.util.Map<Resource,java.util.Set<Resource>>
SchemaCachingRDFSInferencer. calculatedProperties
private java.util.Map<Resource,java.util.Set<Resource>>
SchemaCachingRDFSInferencer. calculatedProperties
private java.util.Map<Resource,java.util.Set<Resource>>
SchemaCachingRDFSInferencer. calculatedRange
private java.util.Map<Resource,java.util.Set<Resource>>
SchemaCachingRDFSInferencer. calculatedRange
private java.util.Map<Resource,java.util.Set<Resource>>
SchemaCachingRDFSInferencer. calculatedTypes
private java.util.Map<Resource,java.util.Set<Resource>>
SchemaCachingRDFSInferencer. calculatedTypes
private java.util.Collection<Resource>
SchemaCachingRDFSInferencer. properties
private java.util.Collection<Resource>
SchemaCachingRDFSInferencer. types
Methods in org.eclipse.rdf4j.sail.inferencer.fc that return types with arguments of type Resource Modifier and Type Method Description private java.util.stream.Stream<java.util.Map.Entry<Resource,java.util.Set<Resource>>>
SchemaCachingRDFSInferencer. getStream(java.util.Map<Resource,java.util.Set<Resource>> map)
private java.util.stream.Stream<java.util.Map.Entry<Resource,java.util.Set<Resource>>>
SchemaCachingRDFSInferencer. getStream(java.util.Map<Resource,java.util.Set<Resource>> map)
(package private) java.util.Set<Resource>
SchemaCachingRDFSInferencer. resolveDomainTypes(IRI predicate)
(package private) java.util.Set<Resource>
SchemaCachingRDFSInferencer. resolveProperties(Resource predicate)
(package private) java.util.Set<Resource>
SchemaCachingRDFSInferencer. resolveRangeTypes(IRI predicate)
(package private) java.util.Set<Resource>
SchemaCachingRDFSInferencer. resolveTypes(Resource value)
Methods in org.eclipse.rdf4j.sail.inferencer.fc with parameters of type Resource Modifier and Type Method Description boolean
DedupingInferencerConnection. addInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
SchemaCachingRDFSInferencerConnection. addInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
(package private) boolean
SchemaCachingRDFSInferencerConnection. addInferredStatementInternal(Resource subj, IRI pred, Value obj, Resource... contexts)
(package private) void
SchemaCachingRDFSInferencer. addProperty(Resource property)
private void
SchemaCachingRDFSInferencerConnection. addStatement(boolean actuallyAdd, Resource subject, IRI predicate, Value object, Resource... context)
void
SchemaCachingRDFSInferencerConnection. addStatement(Resource subject, IRI predicate, Value object, Resource... contexts)
void
SchemaCachingRDFSInferencerConnection. addStatement(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts)
(package private) void
SchemaCachingRDFSInferencer. addType(Resource r)
void
DedupingInferencerConnection. clearInferred(Resource... contexts)
void
SchemaCachingRDFSInferencerConnection. clearInferred(Resource... contexts)
(package private) boolean
SchemaCachingRDFSInferencer. hasProperty(Resource property)
(package private) boolean
SchemaCachingRDFSInferencer. hasType(Resource r)
boolean
DedupingInferencerConnection. removeInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
(package private) java.util.Set<Resource>
SchemaCachingRDFSInferencer. resolveProperties(Resource predicate)
(package private) java.util.Set<Resource>
SchemaCachingRDFSInferencer. resolveTypes(Resource value)
Method parameters in org.eclipse.rdf4j.sail.inferencer.fc with type arguments of type Resource Modifier and Type Method Description private void
SchemaCachingRDFSInferencer. addAll(java.util.Set<Resource> res, java.util.List<java.util.Set<Resource>> from)
private void
SchemaCachingRDFSInferencer. addAll(java.util.Set<Resource> res, java.util.List<java.util.Set<Resource>> from)
private void
SchemaCachingRDFSInferencer. calculateDomainAndRange(java.util.Collection<Statement> rangeOrDomainStatements, java.util.Map<Resource,java.util.Set<Resource>> calculatedRangeOrDomain)
private void
SchemaCachingRDFSInferencer. calculateDomainAndRange(java.util.Collection<Statement> rangeOrDomainStatements, java.util.Map<Resource,java.util.Set<Resource>> calculatedRangeOrDomain)
private java.util.stream.Stream<java.util.Map.Entry<Resource,java.util.Set<Resource>>>
SchemaCachingRDFSInferencer. getStream(java.util.Map<Resource,java.util.Set<Resource>> map)
private java.util.stream.Stream<java.util.Map.Entry<Resource,java.util.Set<Resource>>>
SchemaCachingRDFSInferencer. getStream(java.util.Map<Resource,java.util.Set<Resource>> map)
-
Uses of Resource in org.eclipse.rdf4j.sail.inferencer.fc.config
Methods in org.eclipse.rdf4j.sail.inferencer.fc.config that return Resource Modifier and Type Method Description Resource
CustomGraphQueryInferencerConfig. export(Model m)
Methods in org.eclipse.rdf4j.sail.inferencer.fc.config with parameters of type Resource Modifier and Type Method Description private void
CustomGraphQueryInferencerConfig. addQueryNode(Model m, Resource implNode, IRI predicate, java.lang.String queryText)
void
CustomGraphQueryInferencerConfig. parse(Model m, Resource implNode)
-
Uses of Resource in org.eclipse.rdf4j.sail.inferencer.util
Methods in org.eclipse.rdf4j.sail.inferencer.util with parameters of type Resource Modifier and Type Method Description protected void
RDFInferencerInserter. addStatement(Resource subj, IRI pred, Value obj, Resource ctxt)
-
Uses of Resource in org.eclipse.rdf4j.sail.lucene
Fields in org.eclipse.rdf4j.sail.lucene declared as Resource Modifier and Type Field Description (package private) Resource[]
LuceneSailBuffer.ClearContextOperation. contexts
private Resource
QuerySpec. subject
Fields in org.eclipse.rdf4j.sail.lucene with type parameters of type Resource Modifier and Type Field Description (package private) java.util.Map<Resource,java.lang.Boolean>
LuceneSailBuffer.AddRemoveOperation. typeAdded
(package private) java.util.Set<Resource>
LuceneSailBuffer.AddRemoveOperation. typeRemoved
Methods in org.eclipse.rdf4j.sail.lucene that return Resource Modifier and Type Method Description static Resource
SearchFields. createContext(java.lang.String idString)
static Resource
SearchFields. createResource(java.lang.String idString)
Parses an id-string (a serialized resource) back to a resource Inverse method ofSearchFields.getResourceID(Resource)
Resource
LuceneSailBuffer.ContextAwareStatementImpl. getContext()
Resource[]
LuceneSailBuffer.ClearContextOperation. getContexts()
protected Resource
AbstractSearchIndex. getResource(SearchDocument document)
Returns the Resource corresponding with the specified Document.Resource
LuceneSailBuffer.ContextAwareStatementImpl. getSubject()
Resource
QuerySpec. getSubject()
Methods in org.eclipse.rdf4j.sail.lucene that return types with arguments of type Resource Modifier and Type Method Description java.util.Map<Resource,java.lang.Boolean>
LuceneSailBuffer.AddRemoveOperation. getTypeAdded()
java.util.Set<Resource>
LuceneSailBuffer.AddRemoveOperation. getTypeRemoved()
Methods in org.eclipse.rdf4j.sail.lucene with parameters of type Resource Modifier and Type Method Description void
AbstractSearchIndex. addDocuments(Resource subject, java.util.List<Statement> statements)
Add a complete Lucene Document based on these statements.void
SearchIndex. addDocuments(Resource subject, java.util.List<Statement> statements)
Add a complete Lucene Document based on these statements.Do not search for an existing document with the same subject id.void
LuceneSailConnection. addStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
void
LuceneSailBuffer. clear(Resource[] contexts)
Deprecated.void
LuceneSailConnection. clear(Resource... contexts)
private void
LuceneSailConnection. clearContexts(Resource... contexts)
void
SearchIndex. clearContexts(Resource... contexts)
This should be called from within a begin-commit-rollback block.static java.lang.String
SearchFields. getContextID(Resource resource)
Get the ID for a context.static java.lang.String
SearchFields. getResourceID(Resource resource)
Returns the String ID corresponding with the specified Resource.protected abstract java.lang.Iterable<? extends DocumentScore>
AbstractSearchIndex. query(Resource subject, QuerySpec param)
java.lang.Iterable<? extends DocumentScore>
SearchQuery. query(Resource subject)
Deprecated.Queries for the given subject or all subjects if null.void
LuceneSailConnection. removeStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
Constructors in org.eclipse.rdf4j.sail.lucene with parameters of type Resource Constructor Description ClearContextOperation(Resource[] contexts)
QuerySpec(java.lang.String matchesVarName, java.lang.String propertyVarName, java.lang.String scoreVarName, java.lang.String snippetVarName, Resource subject, java.lang.String queryString, IRI propertyURI)
QuerySpec(StatementPattern matchesPattern, java.util.Collection<QuerySpec.QueryParam> queryPatterns, StatementPattern scorePattern, StatementPattern typePattern, StatementPattern idPattern, Resource subject)
-
Uses of Resource in org.eclipse.rdf4j.sail.lucene.config
Methods in org.eclipse.rdf4j.sail.lucene.config that return Resource Modifier and Type Method Description Resource
AbstractLuceneSailConfig. export(Model m)
Methods in org.eclipse.rdf4j.sail.lucene.config with parameters of type Resource Modifier and Type Method Description void
AbstractLuceneSailConfig. parse(Model graph, Resource implNode)
-
Uses of Resource in org.eclipse.rdf4j.sail.memory
Methods in org.eclipse.rdf4j.sail.memory that return types with arguments of type Resource Modifier and Type Method Description CloseableIteration<? extends Resource,SailException>
MemorySailStore.MemorySailDataset. getContextIDs()
Methods in org.eclipse.rdf4j.sail.memory with parameters of type Resource Modifier and Type Method Description boolean
MemoryStoreConnection. addInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
private MemStatement
MemorySailStore.MemorySailSink. addStatement(Resource subj, IRI pred, Value obj, Resource context, boolean explicit)
protected void
MemoryStoreConnection. addStatementInternal(Resource subj, IRI pred, Value obj, Resource... contexts)
void
MemorySailStore.MemorySailSink. approve(Resource subj, IRI pred, Value obj, Resource ctx)
void
MemorySailStore.MemorySailSink. clear(Resource... contexts)
void
MemoryStoreConnection. clearInferred(Resource... contexts)
protected void
MemoryStoreConnection. clearInternal(Resource... contexts)
private CloseableIteration<MemStatement,SailException>
MemorySailStore. createStatementIterator(Resource subj, IRI pred, Value obj, java.lang.Boolean explicit, int snapshot, Resource... contexts)
Creates a StatementIterator that contains the statements matching the specified pattern of subject, predicate, object, context.private CloseableIteration<MemTriple,SailException>
MemorySailStore. createTripleIterator(Resource subj, IRI pred, Value obj, int snapshot)
Creates a TripleIterator that contains the triples matching the specified pattern of subject, predicate, object, context.boolean
MemorySailStore.MemorySailSink. deprecateByQuery(Resource subj, IRI pred, Value obj, Resource[] contexts)
CloseableIteration<MemStatement,SailException>
MemorySailStore.MemorySailDataset. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
CloseableIteration<MemTriple,SailException>
MemorySailStore.MemorySailDataset. getTriples(Resource subj, IRI pred, Value obj)
void
MemorySailStore.MemorySailSink. observe(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
MemoryStoreConnection. removeInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
protected void
MemoryStoreConnection. removeStatementsInternal(Resource subj, IRI pred, Value obj, Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.sail.memory.config
Methods in org.eclipse.rdf4j.sail.memory.config that return Resource Modifier and Type Method Description Resource
MemoryStoreConfig. export(Model m)
Methods in org.eclipse.rdf4j.sail.memory.config with parameters of type Resource Modifier and Type Method Description void
MemoryStoreConfig. parse(Model graph, Resource implNode)
-
Uses of Resource in org.eclipse.rdf4j.sail.memory.model
Classes in org.eclipse.rdf4j.sail.memory.model that implement Resource Modifier and Type Class Description class
MemBNode
A MemoryStore-specific extension of BNodeImpl giving it node properties.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.class
MemResource
A MemoryStore-specific extension of Resource giving it subject statements.class
MemTriple
A MemoryStore-specific implementation ofTriple
.Methods in org.eclipse.rdf4j.sail.memory.model with parameters of type Resource Modifier and Type Method Description Triple
MemValueFactory. createTriple(Resource subject, IRI predicate, Value object)
MemResource
MemValueFactory. getMemResource(Resource resource)
See getMemValue() for description.MemResource
MemValueFactory. getOrCreateMemResource(Resource resource)
SeeMemValueFactory.getOrCreateMemValue(Value)
for description. -
Uses of Resource in org.eclipse.rdf4j.sail.model
Methods in org.eclipse.rdf4j.sail.model with parameters of type Resource Modifier and Type Method Description boolean
SailModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
SailModel. clear(Resource... contexts)
boolean
SailModel. contains(Resource subj, IRI pred, Value obj, Resource... contexts)
Model
SailModel. filter(Resource subj, IRI pred, Value obj, Resource... contexts)
private java.util.Iterator<Statement>
SailModel. iterator(Resource subj, IRI pred, Value obj, Resource... contexts)
boolean
SailModel. remove(Resource subj, IRI pred, Value obj, Resource... contexts)
void
SailModel. removeTermIteration(java.util.Iterator<Statement> iter, Resource subj, IRI pred, Value obj, Resource... contexts)
-
Uses of Resource in org.eclipse.rdf4j.sail.shacl
Fields in org.eclipse.rdf4j.sail.shacl declared as Resource Modifier and Type Field Description private static Resource[]
ShaclValidator. ALL_CONTEXTS
private Resource[]
ValidationSettings. dataGraph
private static Resource[]
ShaclValidator. SHAPE_CONTEXTS
Methods in org.eclipse.rdf4j.sail.shacl that return Resource Modifier and Type Method Description Resource[]
ValidationSettings. getDataGraph()
Methods in org.eclipse.rdf4j.sail.shacl with parameters of type Resource Modifier and Type Method Description void
ShaclSailConnection. addStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
void
ShaclSailConnection. addStatement(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts)
void
ShaclSailConnection. clear(Resource... contexts)
CloseableIteration<? extends Statement,SailException>
ShaclSailConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
ShaclSailConnection. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
void
ShaclSailConnection. removeStatement(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts)
void
ShaclSailConnection. removeStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
void
TransferStatement. transfer(Resource subject, IRI predicate, Value object, Resource context)
Constructors in org.eclipse.rdf4j.sail.shacl with parameters of type Resource Constructor Description ValidationSettings(Resource[] dataGraph, boolean logValidationPlans, boolean validateEntireBaseSail, boolean performanceLogging)
-
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast
Fields in org.eclipse.rdf4j.sail.shacl.ast declared as Resource Modifier and Type Field Description (package private) Resource[]
Shape. contexts
private Resource[]
ContextWithShape. dataGraph
private Resource[]
ShaclSparqlConstraintFailureException. dataGraph
private Resource
ShaclProperties. id
(package private) Resource
ShaclShapeParsingException. id
private Resource
Shape. id
private Resource
ShaclProperties. ignoredProperties
private Resource
ShaclProperties. in
private Resource
ShaclProperties. languageIn
private Resource
ShaclProperties. nodeKind
private Resource
ShaclProperties. path
private Resource
ShaclProperties. qualifiedValueShape
private Resource[]
ContextWithShape. shapeGraph
Fields in org.eclipse.rdf4j.sail.shacl.ast with type parameters of type Resource Modifier and Type Field Description private java.util.List<Resource>
ShaclProperties. and
(package private) java.util.Map<Resource,Shape>
Cache. cache
private java.util.List<Resource>
ShaclProperties. hasValueIn
private java.util.List<Resource>
ShaclProperties. node
private java.util.List<Resource>
ShaclProperties. not
private static StatementMatcher.Variable<Resource>
StatementMatcher. NULL_SUBJECT
private java.util.List<Resource>
ShaclProperties. or
private java.util.List<Resource>
ShaclProperties. property
private java.util.List<Resource>
ShaclProperties. sparql
private StatementMatcher.Variable<? extends Resource>
StatementMatcher. subject
private java.util.List<Resource>
ShaclProperties. target
private java.util.Set<Resource>
ShaclProperties. targetClass
private java.util.List<Resource>
ShaclProperties. targetShape
private java.util.List<Resource>
ShaclProperties. xone
Methods in org.eclipse.rdf4j.sail.shacl.ast that return Resource Modifier and Type Method Description Resource[]
Shape. getContexts()
Resource[]
ContextWithShape. getDataGraph()
Resource[]
ShaclSparqlConstraintFailureException. getDataGraph()
Resource
Identifiable. getId()
Resource
ShaclProperties. getId()
Resource
ShaclShapeParsingException. getId()
Resource
Shape. getId()
Resource
ShaclProperties. getIgnoredProperties()
Resource
ShaclProperties. getIn()
Resource
ShaclProperties. getLanguageIn()
Resource
ShaclProperties. getNodeKind()
Resource
ShaclProperties. getPath()
Resource
ShaclProperties. getQualifiedValueShape()
Resource[]
ContextWithShape. getShapeGraph()
Resource
StatementMatcher. getSubjectValue()
Methods in org.eclipse.rdf4j.sail.shacl.ast that return types with arguments of type Resource Modifier and Type Method Description java.util.List<Resource>
ShaclProperties. getAnd()
java.util.List<Resource>
ShaclProperties. getHasValueIn()
java.util.List<Resource>
ShaclProperties. getNode()
java.util.List<Resource>
ShaclProperties. getNot()
java.util.List<Resource>
ShaclProperties. getOr()
java.util.List<Resource>
ShaclProperties. getProperty()
java.util.List<Resource>
ShaclProperties. getSparql()
java.util.List<Resource>
ShaclProperties. getTarget()
java.util.Set<Resource>
ShaclProperties. getTargetClass()
java.util.List<Resource>
ShaclProperties. getTargetShape()
java.util.List<Resource>
ShaclProperties. getXone()
Methods in org.eclipse.rdf4j.sail.shacl.ast with parameters of type Resource Modifier and Type Method Description static ShaclPrefixParser.Namespaces
ShaclPrefixParser. extractNamespaces(Resource id, ShapeSource shapeSource)
Shape
Cache. get(Resource id)
PlanNode
NodeShape. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
PropertyShape. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
private static ShaclShapeParsingException
ShaclProperties. getExceptionForAlreadyPopulated(Resource id, java.lang.String predicate, java.lang.Object existingObject, Value secondValue)
private static ShaclShapeParsingException
ShaclProperties. getExceptionForCastIssue(Resource id, java.lang.String predicate, java.lang.Class<?> expectedClass, Value object)
private static ShaclShapeParsingException
ShaclProperties. getExceptionForLiteralFormatIssue(Resource id, java.lang.String predicate, Value object, java.lang.Class<?> clazz)
java.util.stream.Stream<EffectiveTarget.StatementsAndMatcher>
SparqlFragment. getRoot(ConnectionsGroup connectionsGroup, Resource[] dataGraph, Path path, StatementMatcher currentStatementMatcher, java.util.List<Statement> currentStatements)
java.util.stream.Stream<EffectiveTarget.StatementsAndMatcher>
SparqlFragment.TraceBack. getRoot(ConnectionsGroup connectionsGroup, Resource[] dataGraph, Path path, StatementMatcher currentStatementMatcher, java.util.List<Statement> currentStatements)
static java.util.List<ContextWithShape>
Shape.Factory. getShapesInContext(ShapeSource shapeSource, Shape.ParseSettings parseSettings, Cache cache, Resource[] dataGraph, Resource[] shapesGraph)
PlanNode
ValidationQuery.Deactivated. getValidationPlan(SailConnection baseConnection, Resource[] dataGraph, Resource[] shapesGraphs)
PlanNode
ValidationQuery. getValidationPlan(SailConnection baseConnection, Resource[] dataGraph, Resource[] shapesGraphs)
static void
ShaclAstLists. listToRdf(java.util.Collection<? extends Value> values, Resource head, Model model)
void
Cache. put(Resource id, Shape shape)
boolean
PropertyShape. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
boolean
Shape. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
private static java.lang.String
ShaclShapeParsingException. resourceToString(Resource id)
private static java.lang.String
ShaclSparqlConstraintFailureException. resourceToString(Resource id)
private static java.util.List<Value>
ShaclAstLists. toList(ShapeSource shapeSource, Resource head)
static <T extends Value>
java.util.List<T>ShaclAstLists. toList(ShapeSource shapeSource, Resource head, java.lang.Class<T> type)
void
Exportable. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
NodeShape. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
PropertyShape. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
Shape. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
Method parameters in org.eclipse.rdf4j.sail.shacl.ast with type arguments of type Resource Modifier and Type Method Description boolean
StatementMatcher. hasSubject(StatementMatcher.Variable<Resource> variable)
void
ContextWithShape. toModel(Model model, java.util.Set<Resource> cycleDetection)
void
Exportable. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
NodeShape. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
PropertyShape. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
Shape. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
Constructors in org.eclipse.rdf4j.sail.shacl.ast with parameters of type Resource Constructor Description ContextWithShape(Resource[] dataGraph, Resource[] shapeGraph, Shape shape)
ShaclProperties(Resource id, ShapeSource connection)
ShaclShapeParsingException(java.lang.String msg, java.lang.Throwable t, Resource id)
ShaclShapeParsingException(java.lang.String msg, Resource id)
ShaclShapeParsingException(java.lang.Throwable t, Resource id)
ShaclSparqlConstraintFailureException(Shape shape, java.lang.String query, BindingSet resultBindingSet, Value focusNode, Resource[] dataGraph)
Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast with type arguments of type Resource Constructor Description StatementMatcher(StatementMatcher.Variable<? extends Resource> subject, StatementMatcher.Variable<IRI> predicate, StatementMatcher.Variable<? extends Value> object, Targetable origin, java.util.Set<java.lang.String> inheritedVarNames)
-
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents
Fields in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents declared as Resource Modifier and Type Field Description private Resource
AbstractConstraintComponent. id
private Resource
SimpleAbstractConstraintComponent. id
Fields in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type parameters of type Resource Modifier and Type Field Description private java.util.Set<Resource>
ClassConstraintComponent. clazzSet
Methods in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents that return Resource Modifier and Type Method Description Resource
AbstractConstraintComponent. getId()
Resource
SimpleAbstractConstraintComponent. getId()
Methods in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with parameters of type Resource Modifier and Type Method Description static NodeKindConstraintComponent.NodeKind
NodeKindConstraintComponent.NodeKind. from(Resource resource)
PlanNode
AbstractConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
AndConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
ClassConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
ConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
DashHasValueInConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
HasValueConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
MaxCountConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
MinCountConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
NotConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
OrConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
QualifiedMaxCountConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
QualifiedMinCountConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
SimpleAbstractConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
SparqlConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
PlanNode
UniqueLangConstraintComponent. getAllTargetsPlan(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
boolean
AbstractConstraintComponent. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
boolean
AndConstraintComponent. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
boolean
ClassConstraintComponent. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
boolean
ConstraintComponent. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
boolean
NotConstraintComponent. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
boolean
OrConstraintComponent. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
boolean
QualifiedMaxCountConstraintComponent. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
boolean
QualifiedMinCountConstraintComponent. requiresEvaluation(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
void
AndConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
ClassConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
ClosedConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
DashHasValueInConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
DatatypeConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
DisjointConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
EqualsConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
HasValueConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
InConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
LanguageInConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
LessThanConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
LessThanOrEqualsConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MaxCountConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MaxExclusiveConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MaxInclusiveConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MaxLengthConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MinCountConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MinExclusiveConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MinInclusiveConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MinLengthConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
NodeKindConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
NotConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
OrConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
PatternConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
QualifiedMaxCountConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
QualifiedMinCountConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
SparqlConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
UniqueLangConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
XoneConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
Method parameters in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type arguments of type Resource Modifier and Type Method Description void
AndConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
ClassConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
ClosedConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
DashHasValueInConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
DatatypeConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
DisjointConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
EqualsConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
HasValueConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
InConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
LanguageInConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
LessThanConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
LessThanOrEqualsConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MaxCountConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MaxExclusiveConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MaxInclusiveConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MaxLengthConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MinCountConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MinExclusiveConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MinInclusiveConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
MinLengthConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
NodeKindConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
NotConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
OrConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
PatternConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
QualifiedMaxCountConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
QualifiedMinCountConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
SparqlConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
UniqueLangConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
XoneConstraintComponent. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type arguments of type Resource Constructor Description ClosedConstraintComponent(ShapeSource shapeSource, java.util.List<Resource> property, Resource ignoredProperties)
-
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast.paths
Fields in org.eclipse.rdf4j.sail.shacl.ast.paths declared as Resource Modifier and Type Field Description private Resource
AlternativePath. alternativePathId
(package private) Resource
Path. id
Methods in org.eclipse.rdf4j.sail.shacl.ast.paths that return Resource Modifier and Type Method Description Resource
Path. getId()
Resource
SimplePath. getId()
Methods in org.eclipse.rdf4j.sail.shacl.ast.paths with parameters of type Resource Modifier and Type Method Description static Path
Path. buildPath(ShapeSource shapeSource, Resource id)
PlanNode
AlternativePath. getAllAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
InversePath. getAllAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
OneOrMorePath. getAllAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
abstract PlanNode
Path. getAllAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
Get all values added in this transaction.PlanNode
SequencePath. getAllAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
SimplePath. getAllAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
ZeroOrMorePath. getAllAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
ZeroOrOnePath. getAllAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
AlternativePath. getAnyAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
InversePath. getAnyAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
OneOrMorePath. getAnyAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
abstract PlanNode
Path. getAnyAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
Get values added in this transaction.PlanNode
SequencePath. getAnyAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
SimplePath. getAnyAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
ZeroOrMorePath. getAnyAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
PlanNode
ZeroOrOnePath. getAnyAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper)
void
AlternativePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
InversePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
OneOrMorePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
SequencePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
SimplePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
ZeroOrMorePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
ZeroOrOnePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
Method parameters in org.eclipse.rdf4j.sail.shacl.ast.paths with type arguments of type Resource Modifier and Type Method Description void
AlternativePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
InversePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
OneOrMorePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
SequencePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
SimplePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
ZeroOrMorePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
ZeroOrOnePath. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
Constructors in org.eclipse.rdf4j.sail.shacl.ast.paths with parameters of type Resource Constructor Description AlternativePath(Resource id, Resource alternativePathId, java.util.List<Path> paths)
AlternativePath(Resource id, Resource paths, ShapeSource shapeSource)
InversePath(Resource id, Resource path, ShapeSource shapeSource)
InversePath(Resource id, Path path)
OneOrMorePath(Resource id, Resource path, ShapeSource shapeSource)
OneOrMorePath(Resource id, Path path)
Path(Resource id)
SequencePath(Resource id, java.util.List<Path> paths)
SequencePath(Resource id, ShapeSource shapeSource)
ZeroOrMorePath(Resource id, Resource path, ShapeSource shapeSource)
ZeroOrMorePath(Resource id, Path path)
ZeroOrOnePath(Resource id, Resource path, ShapeSource shapeSource)
ZeroOrOnePath(Resource id, Path path)
-
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast.planNodes
Fields in org.eclipse.rdf4j.sail.shacl.ast.planNodes declared as Resource Modifier and Type Field Description private static Resource[]
BulkedExternalInnerJoin. allContext
private Resource[]
AllTargetsPlanNode.AllTargetsBindingSetMapper. contexts
private Resource[]
ValidationTuple. contexts
private Resource[]
BulkedExternalInnerJoin. dataGraph
private Resource[]
BulkedExternalLeftOuterJoin. dataGraph
private Resource[]
FilterByPredicate. dataGraph
private Resource[]
FilterByPredicateObject. dataGraph
private Resource[]
FilterTargetIsObject. dataGraph
private Resource[]
FilterTargetIsSubject. dataGraph
private Resource[]
SparqlConstraintSelect. dataGraph
private Resource[]
UnorderedSelect. dataGraph
private static Resource[]
ValidationTuple. NULL_CONTEXT
private Resource
UnorderedSelect. subject
Fields in org.eclipse.rdf4j.sail.shacl.ast.planNodes with type parameters of type Resource Modifier and Type Field Description private java.util.Set<Resource>
FilterByPredicateObject. filterOnObject
Methods in org.eclipse.rdf4j.sail.shacl.ast.planNodes that return Resource Modifier and Type Method Description Resource[]
ValidationTuple. getContexts()
Methods in org.eclipse.rdf4j.sail.shacl.ast.planNodes with parameters of type Resource Modifier and Type Method Description ValidationTuple
UnorderedSelect.Mapper.ObjectScopedMapper. apply(Statement s, Resource[] dataGraph)
ValidationTuple
UnorderedSelect.Mapper.SubjectObjectPropertyShapeMapper. apply(Statement s, Resource[] dataGraph)
ValidationTuple
UnorderedSelect.Mapper.SubjectScopedMapper. apply(Statement s, Resource[] dataGraph)
static Dataset
PlanNodeHelper. asDefaultGraphDataset(Resource[] dataGraph)
private java.util.List<BindingSet>
AbstractBulkJoinPlanNode. buildBindingSets(java.util.ArrayDeque<ValidationTuple> left, SailConnection connection, boolean skipBasedOnPreviousConnection, SailConnection previousStateConnection, Resource[] dataGraph)
static java.util.function.Function<BindingSet,ValidationTuple>
BulkedExternalInnerJoin. getMapper(java.lang.String a, java.lang.String c, ConstraintComponent.Scope scope, Resource[] dataGraph)
private boolean
FilterByPredicateObject. matches(Value subject, IRI filterOnPredicate, Resource[] filterOnObject)
(package private) void
AbstractBulkJoinPlanNode. runQuery(java.util.ArrayDeque<ValidationTuple> left, java.util.ArrayDeque<ValidationTuple> right, SailConnection connection, TupleExpr parsedQuery, Dataset dataset, Resource[] dataGraph, boolean skipBasedOnPreviousConnection, SailConnection previousStateConnection)
Constructors in org.eclipse.rdf4j.sail.shacl.ast.planNodes with parameters of type Resource Constructor Description AllTargetsBindingSetMapper(java.util.List<java.lang.String> varNames, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts)
AllTargetsPlanNode(SailConnection sailConnection, Resource[] dataGraph, java.util.ArrayDeque<EffectiveTarget.EffectiveTargetFragment> chain, java.util.List<StatementMatcher.Variable<Value>> vars, ConstraintComponent.Scope scope)
BindSelect(SailConnection connection, Resource[] dataGraph, SparqlFragment query, java.util.List<StatementMatcher.Variable<Value>> vars, PlanNode source, java.util.List<java.lang.String> varNames, ConstraintComponent.Scope scope, int bulkSize, EffectiveTarget.Extend direction, boolean includePropertyShapeValues)
BulkedExternalInnerJoin(PlanNode leftNode, SailConnection connection, Resource[] dataGraph, SparqlFragment query, boolean skipBasedOnPreviousConnection, SailConnection previousStateConnection, java.util.function.Function<BindingSet,ValidationTuple> mapper)
BulkedExternalLeftOuterJoin(PlanNode leftNode, SailConnection connection, Resource[] dataGraph, SparqlFragment query, java.util.function.Function<BindingSet,ValidationTuple> mapper)
ExternalFilterByQuery(SailConnection connection, Resource[] dataGraph, PlanNode parent, SparqlFragment queryFragment, StatementMatcher.Variable queryVariable, java.util.function.Function<ValidationTuple,Value> filterOn)
FilterByPredicate(SailConnection connection, java.util.Set<IRI> filterOnPredicates, PlanNode parent, FilterByPredicate.On on, Resource[] dataGraph)
FilterByPredicateObject(SailConnection connection, Resource[] dataGraph, IRI filterOnPredicate, java.util.Set<Resource> filterOnObject, PlanNode parent, boolean returnMatching, FilterByPredicateObject.FilterOn filterOn, boolean includeInferred)
FilterTargetIsObject(SailConnection connection, Resource[] dataGraph, PlanNode parent)
FilterTargetIsSubject(SailConnection connection, Resource[] dataGraph, PlanNode parent)
Select(SailConnection connection, java.lang.String query, java.util.function.Function<BindingSet,ValidationTuple> mapper, Resource[] dataGraph)
Select(SailConnection connection, SparqlFragment queryFragment, java.lang.String orderBy, java.util.function.Function<BindingSet,ValidationTuple> mapper, Resource[] dataGraph)
SparqlConstraintSelect(SailConnection connection, PlanNode targets, java.lang.String query, ConstraintComponent.Scope scope, Resource[] dataGraph, boolean produceValidationReports, SparqlConstraintComponent constraintComponent, Shape shape)
UnorderedSelect(SailConnection connection, Resource subject, IRI predicate, Value object, Resource[] dataGraph, java.util.function.BiFunction<Statement,Resource[],ValidationTuple> mapper)
ValidationTuple(java.util.List<Value> chain, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts)
ValidationTuple(java.util.List<ValidationResult> validationResults, Value[] chain, ConstraintComponent.Scope scope, boolean propertyShapeScopeWithValue, java.util.Set<ValidationTuple> compressedTuples, Resource[] contexts)
ValidationTuple(Value[] chain, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts)
ValidationTuple(Value a, Value c, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts)
ValidationTuple(Value subject, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts)
ValidationTuple(BindingSet bindingSet, java.lang.String[] variables, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts)
ValidationTuple(BindingSet bindingSet, java.util.List<java.lang.String> variables, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts)
ValuesBackedNode(java.util.SortedSet<Value> values, ConstraintComponent.Scope scope, Resource[] dataGraph)
Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast.planNodes with type arguments of type Resource Constructor Description FilterByPredicateObject(SailConnection connection, Resource[] dataGraph, IRI filterOnPredicate, java.util.Set<Resource> filterOnObject, PlanNode parent, boolean returnMatching, FilterByPredicateObject.FilterOn filterOn, boolean includeInferred)
-
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast.targets
Fields in org.eclipse.rdf4j.sail.shacl.ast.targets declared as Resource Modifier and Type Field Description private Resource[]
EffectiveTarget.ActiveTargetTupleMapper. dataGraph
private Resource[]
TargetChainRetriever. dataGraph
private Resource
DashAllObjects. id
private Resource
DashAllSubjects. id
private Resource
SparqlTarget. id
private Resource[]
TargetNode. sourceContexts
Fields in org.eclipse.rdf4j.sail.shacl.ast.targets with type parameters of type Resource Modifier and Type Field Description private java.util.Set<Resource>
TargetClass. targetClass
Methods in org.eclipse.rdf4j.sail.shacl.ast.targets with parameters of type Resource Modifier and Type Method Description boolean
EffectiveTarget. couldMatch(ConnectionsGroup connectionsGroup, Resource[] dataGraph)
PlanNode
EffectiveTarget. extend(PlanNode source, ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, EffectiveTarget.Extend direction, boolean includePropertyShapeValues, java.util.function.Function<PlanNode,PlanNode> filter)
PlanNode
DashAllObjects. getAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
PlanNode
DashAllSubjects. getAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
PlanNode
RSXTargetShape. getAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
PlanNode
SparqlTarget. getAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
abstract PlanNode
Target. getAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
PlanNode
TargetClass. getAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
PlanNode
TargetNode. getAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
PlanNode
TargetObjectsOf. getAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
PlanNode
TargetSubjectsOf. getAdded(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
private PlanNode
DashAllObjects. getAddedRemovedInner(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope)
private PlanNode
DashAllSubjects. getAddedRemovedInner(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope)
private PlanNode
RSXTargetShape. getAddedRemovedInner(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
private PlanNode
TargetClass. getAddedRemovedInner(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope)
private PlanNode
TargetObjectsOf. getAddedRemovedInner(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope)
private PlanNode
TargetSubjectsOf. getAddedRemovedInner(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope)
PlanNode
EffectiveTarget. getAllTargets(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope)
PlanNode
EffectiveTarget. getPlanNode(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, boolean includeTargetsAffectedByRemoval, java.util.function.Function<PlanNode,PlanNode> filter)
java.util.stream.Stream<EffectiveTarget.StatementsAndMatcher>
EffectiveTarget.EffectiveTargetFragment. getRoot(ConnectionsGroup connectionsGroup, Resource[] dataGraph, StatementMatcher currentStatementMatcher, Statement currentStatement)
PlanNode
DashAllObjects. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
PlanNode
DashAllSubjects. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
PlanNode
EffectiveTarget. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
PlanNode
RSXTargetShape. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
PlanNode
SparqlTarget. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
abstract PlanNode
Target. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
PlanNode
TargetClass. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
PlanNode
TargetNode. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
PlanNode
TargetObjectsOf. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
PlanNode
TargetSubjectsOf. getTargetFilter(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent)
void
DashAllObjects. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
DashAllSubjects. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
RSXTargetShape. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
SparqlTarget. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
TargetClass. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
TargetNode. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
TargetObjectsOf. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
TargetSubjectsOf. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
Method parameters in org.eclipse.rdf4j.sail.shacl.ast.targets with type arguments of type Resource Modifier and Type Method Description void
DashAllObjects. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
DashAllSubjects. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
RSXTargetShape. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
SparqlTarget. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
TargetClass. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
TargetNode. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
TargetObjectsOf. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
void
TargetSubjectsOf. toModel(Resource subject, IRI predicate, Model model, java.util.Set<Resource> cycleDetection)
Constructors in org.eclipse.rdf4j.sail.shacl.ast.targets with parameters of type Resource Constructor Description ActiveTargetTupleMapper(ConstraintComponent.Scope scope, boolean includePropertyShapeValues, Resource[] dataGraph)
DashAllObjects(Resource id)
DashAllSubjects(Resource id)
RSXTargetShape(Resource targetShape, ShapeSource shapeSource, Shape.ParseSettings parseSettings)
SparqlTarget(Resource id, ShapeSource shapeSource)
TargetChainRetriever(ConnectionsGroup connectionsGroup, Resource[] dataGraph, java.util.List<StatementMatcher> statementMatchers, java.util.List<StatementMatcher> removedStatementMatchers, EffectiveTarget.EffectiveTargetFragment removedStatementTarget, SparqlFragment queryFragment, java.util.List<StatementMatcher.Variable<Value>> vars, ConstraintComponent.Scope scope, boolean hasValue)
TargetNode(java.util.TreeSet<Value> targetNodes, Resource[] sourceContexts)
Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast.targets with type arguments of type Resource Constructor Description TargetClass(java.util.Set<Resource> targetClass)
-
Uses of Resource in org.eclipse.rdf4j.sail.shacl.config
Methods in org.eclipse.rdf4j.sail.shacl.config that return Resource Modifier and Type Method Description Resource
ShaclSailConfig. export(Model m)
Methods in org.eclipse.rdf4j.sail.shacl.config with parameters of type Resource Modifier and Type Method Description void
ShaclSailConfig. parse(Model m, Resource implNode)
-
Uses of Resource in org.eclipse.rdf4j.sail.shacl.results
Fields in org.eclipse.rdf4j.sail.shacl.results declared as Resource Modifier and Type Field Description private Resource[]
ValidationResult. dataGraphs
Deprecated.protected Resource
ValidationReport. id
Deprecated.private Resource
ValidationResult. id
Deprecated.private Resource[]
ValidationResult. shapesGraphs
Deprecated.Methods in org.eclipse.rdf4j.sail.shacl.results that return Resource Modifier and Type Method Description protected Resource[]
ValidationResult. getDataGraphs()
Deprecated.Resource
ValidationReport. getId()
Deprecated.Resource
ValidationResult. getId()
Deprecated.protected Resource[]
ValidationResult. getShapesGraphs()
Deprecated.Methods in org.eclipse.rdf4j.sail.shacl.results that return types with arguments of type Resource Modifier and Type Method Description private static java.util.Set<Resource>
ValidationResult. contextsToSet(Resource[] context)
Deprecated.Methods in org.eclipse.rdf4j.sail.shacl.results with parameters of type Resource Modifier and Type Method Description private static java.util.Set<Resource>
ValidationResult. contextsToSet(Resource[] context)
Deprecated.Method parameters in org.eclipse.rdf4j.sail.shacl.results with type arguments of type Resource Modifier and Type Method Description Model
ValidationResult. asModel(Model model, java.util.Set<Resource> rdfListDedupe)
Deprecated.Constructors in org.eclipse.rdf4j.sail.shacl.results with parameters of type Resource Constructor Description ValidationResult(Value focusNode, Value value, Shape shape, ConstraintComponent sourceConstraint, Severity severity, ConstraintComponent.Scope scope, Resource[] dataGraphs, Resource[] shapesGraphs)
Deprecated. -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.wrapper.data
Fields in org.eclipse.rdf4j.sail.shacl.wrapper.data with type parameters of type Resource Modifier and Type Field Description private java.util.Map<Resource,java.util.Set<Resource>>
RdfsSubClassOfReasoner. backwardsChainCache
private java.util.Map<Resource,java.util.Set<Resource>>
RdfsSubClassOfReasoner. backwardsChainCache
private java.util.Map<Resource,java.util.Set<Resource>>
RdfsSubClassOfReasoner. forwardChainCache
private java.util.Map<Resource,java.util.Set<Resource>>
RdfsSubClassOfReasoner. forwardChainCache
private java.util.Collection<Resource>
RdfsSubClassOfReasoner. types
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.data that return types with arguments of type Resource Modifier and Type Method Description java.util.Set<Resource>
RdfsSubClassOfReasoner. backwardsChain(Resource type)
private java.util.Set<Resource>
RdfsSubClassOfReasoner. resolveTypes(Resource value, java.util.Map<Resource,java.util.Set<Resource>> forwardChainCache)
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.data with parameters of type Resource Modifier and Type Method Description java.util.Set<Resource>
RdfsSubClassOfReasoner. backwardsChain(Resource type)
CloseableIteration<? extends Statement,SailException>
VerySimpleRdfsBackwardsChainingConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
boolean
VerySimpleRdfsBackwardsChainingConnection. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
private java.util.Set<Resource>
RdfsSubClassOfReasoner. resolveTypes(Resource value, java.util.Map<Resource,java.util.Set<Resource>> forwardChainCache)
Method parameters in org.eclipse.rdf4j.sail.shacl.wrapper.data with type arguments of type Resource Modifier and Type Method Description private void
RdfsSubClassOfReasoner. forwardChainUntilFixPoint(java.util.Map<Resource,java.util.Set<Resource>> forwardChainCache)
private void
RdfsSubClassOfReasoner. forwardChainUntilFixPoint(java.util.Map<Resource,java.util.Set<Resource>> forwardChainCache)
private java.util.Set<Resource>
RdfsSubClassOfReasoner. resolveTypes(Resource value, java.util.Map<Resource,java.util.Set<Resource>> forwardChainCache)
private java.util.Set<Resource>
RdfsSubClassOfReasoner. resolveTypes(Resource value, java.util.Map<Resource,java.util.Set<Resource>> forwardChainCache)
-
Uses of Resource in org.eclipse.rdf4j.sail.shacl.wrapper.shape
Fields in org.eclipse.rdf4j.sail.shacl.wrapper.shape declared as Resource Modifier and Type Field Description private static Resource[]
ShapeSource.ShapesGraph. allContext
private Resource[]
BackwardChainingShapeSource. context
private Resource[]
CombinedShapeSource. context
private Resource[]
Rdf4jShaclShapeGraphShapeSource. context
private Resource[]
RepositoryConnectionShapeSource. context
private Resource[]
SailConnectionShapeSource. context
private Resource[]
ShapeSource.ShapesGraph. dataGraph
private Resource[]
ShapeSource.ShapesGraph. shapesGraph
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.shape that return Resource Modifier and Type Method Description Resource[]
BackwardChainingShapeSource. getActiveContexts()
Resource[]
CombinedShapeSource. getActiveContexts()
Resource[]
Rdf4jShaclShapeGraphShapeSource. getActiveContexts()
Resource[]
RepositoryConnectionShapeSource. getActiveContexts()
Resource[]
SailConnectionShapeSource. getActiveContexts()
Resource[]
ShapeSource. getActiveContexts()
Resource[]
ShapeSource.ShapesGraph. getDataGraph()
Resource
BackwardChainingShapeSource. getRdfRest(Resource subject)
Resource
CombinedShapeSource. getRdfRest(Resource subject)
Resource
Rdf4jShaclShapeGraphShapeSource. getRdfRest(Resource subject)
Resource
RepositoryConnectionShapeSource. getRdfRest(Resource subject)
Resource
SailConnectionShapeSource. getRdfRest(Resource subject)
Resource
ShapeSource. getRdfRest(Resource subject)
(package private) static Resource
ShapeSourceHelper. getRdfRest(RepositoryConnection connection, Resource subject, Resource[] context)
(package private) static Resource
ShapeSourceHelper. getRdfRest(SailConnection connection, Resource subject, Resource[] context)
Resource[]
ShapeSource.ShapesGraph. getShapesGraph()
private static Resource
ShapeSource.ShapesGraph. handleDefaultGraph(Resource graph)
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.shape that return types with arguments of type Resource Modifier and Type Method Description private java.util.stream.Stream<Resource>
SailConnectionShapeSource. getContext(ShapeSource.Predicates predicate)
java.util.stream.Stream<Resource>
BackwardChainingShapeSource. getSubjects(ShapeSource.Predicates predicate)
java.util.stream.Stream<Resource>
CombinedShapeSource. getSubjects(ShapeSource.Predicates predicate)
java.util.stream.Stream<Resource>
Rdf4jShaclShapeGraphShapeSource. getSubjects(ShapeSource.Predicates predicate)
java.util.stream.Stream<Resource>
RepositoryConnectionShapeSource. getSubjects(ShapeSource.Predicates predicate)
java.util.stream.Stream<Resource>
SailConnectionShapeSource. getSubjects(ShapeSource.Predicates predicate)
java.util.stream.Stream<Resource>
ShapeSource. getSubjects(ShapeSource.Predicates predicate)
java.util.stream.Stream<Resource>
BackwardChainingShapeSource. getTargetableShape()
java.util.stream.Stream<Resource>
CombinedShapeSource. getTargetableShape()
java.util.stream.Stream<Resource>
Rdf4jShaclShapeGraphShapeSource. getTargetableShape()
java.util.stream.Stream<Resource>
RepositoryConnectionShapeSource. getTargetableShape()
java.util.stream.Stream<Resource>
SailConnectionShapeSource. getTargetableShape()
java.util.stream.Stream<Resource>
ShapeSource. getTargetableShape()
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.shape with parameters of type Resource Modifier and Type Method Description java.util.stream.Stream<Statement>
BackwardChainingShapeSource. getAllStatements(Resource id)
java.util.stream.Stream<Statement>
CombinedShapeSource. getAllStatements(Resource id)
java.util.stream.Stream<Statement>
Rdf4jShaclShapeGraphShapeSource. getAllStatements(Resource id)
java.util.stream.Stream<Statement>
RepositoryConnectionShapeSource. getAllStatements(Resource id)
java.util.stream.Stream<Statement>
SailConnectionShapeSource. getAllStatements(Resource id)
java.util.stream.Stream<Statement>
ShapeSource. getAllStatements(Resource id)
(package private) static Value
ShapeSourceHelper. getFirst(RepositoryConnection connection, Resource subject, Resource[] context)
(package private) static Value
ShapeSourceHelper. getFirst(SailConnection connection, Resource subject, Resource[] context)
java.util.stream.Stream<Value>
BackwardChainingShapeSource. getObjects(Resource subject, ShapeSource.Predicates predicate)
java.util.stream.Stream<Value>
CombinedShapeSource. getObjects(Resource subject, ShapeSource.Predicates predicate)
java.util.stream.Stream<Value>
Rdf4jShaclShapeGraphShapeSource. getObjects(Resource subject, ShapeSource.Predicates predicate)
java.util.stream.Stream<Value>
RepositoryConnectionShapeSource. getObjects(Resource subject, ShapeSource.Predicates predicate)
java.util.stream.Stream<Value>
SailConnectionShapeSource. getObjects(Resource subject, ShapeSource.Predicates predicate)
java.util.stream.Stream<Value>
ShapeSource. getObjects(Resource subject, ShapeSource.Predicates predicate)
Value
BackwardChainingShapeSource. getRdfFirst(Resource subject)
Value
CombinedShapeSource. getRdfFirst(Resource subject)
Value
Rdf4jShaclShapeGraphShapeSource. getRdfFirst(Resource subject)
Value
RepositoryConnectionShapeSource. getRdfFirst(Resource subject)
Value
SailConnectionShapeSource. getRdfFirst(Resource subject)
Value
ShapeSource. getRdfFirst(Resource subject)
Resource
BackwardChainingShapeSource. getRdfRest(Resource subject)
Resource
CombinedShapeSource. getRdfRest(Resource subject)
Resource
Rdf4jShaclShapeGraphShapeSource. getRdfRest(Resource subject)
Resource
RepositoryConnectionShapeSource. getRdfRest(Resource subject)
Resource
SailConnectionShapeSource. getRdfRest(Resource subject)
Resource
ShapeSource. getRdfRest(Resource subject)
(package private) static Resource
ShapeSourceHelper. getRdfRest(RepositoryConnection connection, Resource subject, Resource[] context)
(package private) static Resource
ShapeSourceHelper. getRdfRest(SailConnection connection, Resource subject, Resource[] context)
static java.util.stream.Stream<ShapeSource.ShapesGraph>
ShapeSource. getRsxDataAndShapesGraphLink(RepositoryConnection connection, Resource[] context)
static java.util.stream.Stream<ShapeSource.ShapesGraph>
ShapeSource. getRsxDataAndShapesGraphLink(SailConnection connection, Resource[] context)
private static Resource
ShapeSource.ShapesGraph. handleDefaultGraph(Resource graph)
private boolean
BackwardChainingShapeSource. isNodeShapeOrPropertyShape(Resource id)
boolean
BackwardChainingShapeSource. isType(Resource subject, IRI type)
boolean
CombinedShapeSource. isType(Resource subject, IRI type)
boolean
Rdf4jShaclShapeGraphShapeSource. isType(Resource subject, IRI type)
boolean
RepositoryConnectionShapeSource. isType(Resource subject, IRI type)
boolean
SailConnectionShapeSource. isType(Resource subject, IRI type)
boolean
ShapeSource. isType(Resource subject, IRI type)
BackwardChainingShapeSource
BackwardChainingShapeSource. withContext(Resource[] context)
ShapeSource
CombinedShapeSource. withContext(Resource[] context)
Rdf4jShaclShapeGraphShapeSource
Rdf4jShaclShapeGraphShapeSource. withContext(Resource[] context)
RepositoryConnectionShapeSource
RepositoryConnectionShapeSource. withContext(Resource[] context)
SailConnectionShapeSource
SailConnectionShapeSource. withContext(Resource[] context)
ShapeSource
ShapeSource. withContext(Resource[] context)
Constructors in org.eclipse.rdf4j.sail.shacl.wrapper.shape with parameters of type Resource Constructor Description BackwardChainingShapeSource(SailConnection connection, Resource[] context)
CombinedShapeSource(RepositoryConnection shapesForForwardChainingConnection, SailConnection sailConnection, Resource[] context)
CombinedShapeSource(SailConnection shapesForForwardChainingConnection, SailConnection sailConnection, Resource[] context)
CombinedShapeSource(Rdf4jShaclShapeGraphShapeSource rdf4jShapesGraph, BackwardChainingShapeSource baseSail, Resource[] context)
Rdf4jShaclShapeGraphShapeSource(Repository repository, RepositoryConnection connection, Resource[] context)
RepositoryConnectionShapeSource(RepositoryConnection connection, Resource[] context)
SailConnectionShapeSource(SailConnection connection, Resource[] context)
ShapesGraph(Resource dataGraph, java.util.List<? extends Statement> shapesGraph)
Constructor parameters in org.eclipse.rdf4j.sail.shacl.wrapper.shape with type arguments of type Resource Constructor Description ShapesGraph(java.util.List<Resource> dataGraph, java.util.List<Resource> shapesGraph)
-
Uses of Resource in org.eclipse.rdf4j.sparqlbuilder.graphpattern
Methods in org.eclipse.rdf4j.sparqlbuilder.graphpattern with parameters of type Resource Modifier and Type Method Description static TriplePattern
GraphPatterns. tp(Resource subject, IRI predicate, Value... objects)
static TriplePattern
GraphPatterns. tp(Resource subject, IRI predicate, RdfObject... objects)
Create a triple pattern with the given subject, predicate, and object(s)static TriplePattern
GraphPatterns. tp(Resource subject, RdfPredicate predicate, Value... objects)
static TriplePattern
GraphPatterns. tp(Resource subject, RdfPredicate predicate, RdfObject... objects)
Create a triple pattern with the given subject, predicate, and object(s) -
Uses of Resource in org.eclipse.rdf4j.spin
Fields in org.eclipse.rdf4j.spin declared as Resource Modifier and Type Field Description (package private) Resource
SpinRenderer.ListContext. list
(package private) Resource
SpinRenderer.SpinVisitor. list
(package private) Resource
SpinRenderer.ListContext. subject
(package private) Resource
SpinRenderer.SpinVisitor. subject
Fields in org.eclipse.rdf4j.spin with type parameters of type Resource Modifier and Type Field Description (package private) java.util.Map<Resource,java.lang.String>
SpinParser.SpinVisitor. vars
Methods in org.eclipse.rdf4j.spin that return Resource Modifier and Type Method Description (package private) Resource
SpinRenderer.SpinVisitor. getVar(java.lang.String name)
Methods in org.eclipse.rdf4j.spin with parameters of type Resource Modifier and Type Method Description private java.util.List<ValueExpr>
SpinParser.SpinVisitor. getArgs(Resource r, IRI func, IRI... knownArgs)
private int
SpinParser. getMaxIterationCount(Resource ruleProp, TripleSource store)
private java.util.List<IRI>
SpinParser. getNextRules(Resource ruleProp, TripleSource store)
private java.lang.String
SpinParser.SpinVisitor. getVarName(Resource r)
boolean
SpinParser. isThisUnbound(Resource subj, TripleSource store)
(package private) SpinRenderer.ListContext
SpinRenderer.SpinVisitor. newList(Resource res)
private void
SpinRenderer.SpinVisitor. nextListEntry(Resource nextEntry)
protected ParsedOperation
SpinParser. parse(Resource queryResource, IRI queryClass, TripleSource store)
ParsedOperation
SpinParser. parse(Resource queryResource, TripleSource store)
ParsedBooleanQuery
SpinParser. parseAskQuery(Resource queryResource, TripleSource store)
ConstraintViolation
SpinParser. parseConstraintViolation(Resource subj, TripleSource store)
ParsedGraphQuery
SpinParser. parseConstructQuery(Resource queryResource, TripleSource store)
ParsedDescribeQuery
SpinParser. parseDescribeQuery(Resource queryResource, TripleSource store)
ParsedQuery
SpinParser. parseQuery(Resource queryResource, TripleSource store)
private ParsedOperation
SpinParser. parseRDF(Resource queryResource, IRI queryType, TripleSource store)
ParsedTupleQuery
SpinParser. parseSelectQuery(Resource queryResource, TripleSource store)
private ParsedOperation
SpinParser. parseText(Resource queryResource, IRI queryType, TripleSource store)
ParsedUpdate
SpinParser. parseUpdate(Resource queryResource, TripleSource store)
private ValueExpr
SpinParser.SpinVisitor. toValueExpr(Resource r, IRI func)
void
SpinParser.SpinVisitor. visitAsk(Resource ask)
private void
SpinParser.SpinVisitor. visitBind(Resource r)
void
SpinParser.SpinVisitor. visitClear(Resource query)
void
SpinParser.SpinVisitor. visitConstruct(Resource construct)
void
SpinParser.SpinVisitor. visitCreate(Resource query)
private void
SpinParser.SpinVisitor. visitDelete(Resource delete)
void
SpinParser.SpinVisitor. visitDeleteData(Resource query)
void
SpinParser.SpinVisitor. visitDeleteWhere(Resource query)
void
SpinParser.SpinVisitor. visitDescribe(Resource describe)
private void
SpinParser.SpinVisitor. visitFilter(Resource r)
private void
SpinParser.SpinVisitor. visitGroupBy(Resource groupby)
TupleExpr
SpinParser.SpinVisitor. visitGroupGraphPattern(Resource group)
private TupleExpr
SpinParser.SpinVisitor. visitHaving(Resource having)
private void
SpinParser.SpinVisitor. visitInsert(Resource insert)
void
SpinParser.SpinVisitor. visitInsertData(Resource query)
void
SpinParser.SpinVisitor. visitLoad(Resource query)
void
SpinParser.SpinVisitor. visitModify(Resource query)
private Order
SpinParser.SpinVisitor. visitOrderBy(Resource orderby)
private OrderElem
SpinParser.SpinVisitor. visitOrderByCondition(Resource r)
private void
SpinParser.SpinVisitor. visitPattern(Resource r, java.util.Set<IRI> types, TupleExpr currentGroupExpr)
private ProjectionElem
SpinParser.SpinVisitor. visitResultNode(Resource r)
private Projection
SpinParser.SpinVisitor. visitResultNodes(Resource resultNodes)
private ProjectionElem
SpinParser.SpinVisitor. visitResultVariable(Resource r, java.util.Map<java.lang.String,ProjectionElem> previousProjElems)
private Projection
SpinParser.SpinVisitor. visitResultVariables(Resource resultVars, java.util.Map<java.lang.String,ProjectionElem> previousProjElems)
void
SpinParser.SpinVisitor. visitSelect(Resource select)
private ProjectionElemList
SpinParser.SpinVisitor. visitTemplate(Resource r)
private UnaryTupleOperator
SpinParser.SpinVisitor. visitTemplates(Resource templates)
TupleExpr
SpinParser.SpinVisitor. visitWhere(Resource query)
Constructors in org.eclipse.rdf4j.spin with parameters of type Resource Constructor Description AskVisitor(RDFHandler handler, Resource list, Dataset dataset)
ConstructVisitor(RDFHandler handler, Resource subject, Dataset dataset)
DescribeVisitor(RDFHandler handler, Resource subject, Dataset dataset)
ListContext(Resource list, Resource subject)
SpinVisitor(RDFHandler handler, Resource list, Resource subject, Dataset dataset)
-
Uses of Resource in org.eclipse.rdf4j.spin.function
Methods in org.eclipse.rdf4j.spin.function with parameters of type Resource Modifier and Type Method Description private boolean
EvalFunction. isQuery(Resource r, TripleSource store)
-