Uses of Interface
org.eclipse.rdf4j.model.Value
-
-
Uses of Value in org.eclipse.rdf4j.collection.factory.api
Methods in org.eclipse.rdf4j.collection.factory.api that return Value Modifier and Type Method Description private Value
CollectionFactory. valueFromObjectInputStream(java.io.ObjectInputStream ois)
Methods in org.eclipse.rdf4j.collection.factory.api that return types with arguments of type Value Modifier and Type Method Description <V> java.util.Map<Value,V>
CollectionFactory. createValueKeyedMap()
java.util.List<Value>
CollectionFactory. createValueList()
java.util.Queue<Value>
CollectionFactory. createValueQueue()
java.util.Set<Value>
CollectionFactory. createValueSet()
Methods in org.eclipse.rdf4j.collection.factory.api with parameters of type Value Modifier and Type Method Description private byte[]
CollectionFactory. valueIntoByteArray(Value value)
private void
CollectionFactory. valueIntoObjectOutputStream(Value value, java.io.ObjectOutputStream oos)
Method parameters in org.eclipse.rdf4j.collection.factory.api with type arguments of type Value Modifier and Type Method Description BindingSetKey
CollectionFactory. createBindingSetKey(BindingSet bindingSet, java.util.List<java.util.function.Function<BindingSet,Value>> getValues, java.util.function.ToIntFunction<BindingSet> hashOfBindingSetCalculator)
default int
CollectionFactory. hashAValue(java.util.function.Function<BindingSet,Value> getValue, int nextHash, BindingSet bs)
Hashes a value that complies with the hashCode/equals conception but only in context of this collection/factory storage layer.default java.util.function.ToIntFunction<BindingSet>
CollectionFactory. hashOfBindingSetFuntion(java.util.List<java.util.function.Function<BindingSet,Value>> getValues)
Generate a method that calculates a hash code that is valid in context of a single store implementation and QueryExecutionContext. -
Uses of Value in org.eclipse.rdf4j.collection.factory.impl
Fields in org.eclipse.rdf4j.collection.factory.impl declared as Value Modifier and Type Field Description private Value[]
DefaultBindingSetKey. values
Methods in org.eclipse.rdf4j.collection.factory.impl that return types with arguments of type Value Modifier and Type Method Description <V> java.util.Map<Value,V>
DefaultCollectionFactory. createValueKeyedMap()
java.util.List<Value>
DefaultCollectionFactory. createValueList()
java.util.Queue<Value>
DefaultCollectionFactory. createValueQueue()
java.util.Set<Value>
DefaultCollectionFactory. createValueSet()
Method parameters in org.eclipse.rdf4j.collection.factory.impl with type arguments of type Value Modifier and Type Method Description BindingSetKey
DefaultCollectionFactory. createBindingSetKey(BindingSet bindingSet, java.util.List<java.util.function.Function<BindingSet,Value>> getValues, java.util.function.ToIntFunction<BindingSet> hashOfBindingSetCalculator)
Constructor parameters in org.eclipse.rdf4j.collection.factory.impl with type arguments of type Value Constructor Description DefaultBindingSetKey(java.util.List<Value> values, int hash)
-
Uses of Value in org.eclipse.rdf4j.http.client
Methods in org.eclipse.rdf4j.http.client with parameters of type Value Modifier and Type Method Description void
RDF4JProtocolSession. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
-
Uses of Value in org.eclipse.rdf4j.http.protocol
Methods in org.eclipse.rdf4j.http.protocol that return Value Modifier and Type Method Description static Value
Protocol. decodeValue(java.lang.String encodedValue, ValueFactory valueFactory)
Decode a previously encoded value.Methods in org.eclipse.rdf4j.http.protocol with parameters of type Value Modifier and Type Method Description static java.lang.String
Protocol. encodeValue(Value value)
Encodes a value in a canonical serialized string format, for use in a URL query parameter. -
Uses of Value in org.eclipse.rdf4j.http.protocol.transaction
Fields in org.eclipse.rdf4j.http.protocol.transaction with type parameters of type Value Modifier and Type Field Description private java.util.List<Value>
TransactionSAXParser. parsedValues
Methods in org.eclipse.rdf4j.http.protocol.transaction with parameters of type Value Modifier and Type Method Description protected void
TransactionWriter. serialize(Value value, XMLWriter xmlWriter)
-
Uses of Value in org.eclipse.rdf4j.http.protocol.transaction.operations
Fields in org.eclipse.rdf4j.http.protocol.transaction.operations declared as Value Modifier and Type Field Description private Value
StatementOperation. object
Methods in org.eclipse.rdf4j.http.protocol.transaction.operations that return Value Modifier and Type Method Description Value
StatementOperation. getObject()
Methods in org.eclipse.rdf4j.http.protocol.transaction.operations with parameters of type Value Modifier and Type Method Description void
StatementOperation. setObject(Value object)
Constructors in org.eclipse.rdf4j.http.protocol.transaction.operations with parameters of type Value Constructor Description AddStatementOperation(Resource subj, IRI pred, Value obj, Resource... contexts)
Create an AddStatementOperation.RemoveStatementsOperation(Resource subj, IRI pred, Value obj, Resource... contexts)
Creates a RemoveStatementsOperation. -
Uses of Value in org.eclipse.rdf4j.model
Subinterfaces of Value 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
Literal
An RDF-1.1 literal consisting of a label (the lexical value), a datatype, and optionally a language tag.interface
Resource
The supertype of all RDF resources (IRIs and blank nodes).interface
Triple
An RDF-star embedded triple.Methods in org.eclipse.rdf4j.model that return Value Modifier and Type Method Description Value
Statement. getObject()
Gets the object of this statement.Value
Triple. getObject()
Gets the object of this triple.Methods in org.eclipse.rdf4j.model that return types with arguments of type Value Modifier and Type Method Description java.util.Set<Value>
Model. objects()
Returns aSet
view of the objects contained in this model.Methods in org.eclipse.rdf4j.model with parameters of type Value 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. 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 Value in org.eclipse.rdf4j.model.base
Classes in org.eclipse.rdf4j.model.base that implement Value 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
AbstractLiteral
Base class forLiteral
, offering common functionality.(package private) static class
AbstractLiteral.BooleanLiteral
(package private) static class
AbstractLiteral.CalendarLiteral
(package private) static class
AbstractLiteral.DecimalLiteral
(package private) static class
AbstractLiteral.IntegerLiteral
(package private) static class
AbstractLiteral.NumberLiteral
(package private) static class
AbstractLiteral.TaggedLiteral
(package private) static class
AbstractLiteral.TemporalAccessorLiteral
(package private) static class
AbstractLiteral.TemporalAmountLiteral
(package private) static class
AbstractLiteral.TypedLiteral
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 Value Modifier and Type Field Description private Value
AbstractTriple.GenericTriple. object
private Value
AbstractValueFactory.GenericStatement. object
Methods in org.eclipse.rdf4j.model.base that return Value Modifier and Type Method Description Value
AbstractTriple.GenericTriple. getObject()
Value
AbstractValueFactory.GenericStatement. getObject()
Methods in org.eclipse.rdf4j.model.base with parameters of type Value 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 Value Constructor Description GenericStatement(Resource subject, IRI predicate, Value object, Resource context)
GenericTriple(Resource subject, IRI predicate, Value object)
-
Uses of Value in org.eclipse.rdf4j.model.impl
Classes in org.eclipse.rdf4j.model.impl with type parameters of type Value Modifier and Type Class Description private class
AbstractModel.ValueSet<V extends Value>
class
GenericStatement<R extends Resource,I extends IRI,V extends Value>
An implementation of the Statement interface with support for Java Generics.private static class
LinkedHashModel.ModelNode<V extends Value>
Classes in org.eclipse.rdf4j.model.impl that implement Value Modifier and Type Class Description class
BooleanLiteral
An extension ofSimpleLiteral
that stores a boolean value to avoid parsing.class
CalendarLiteral
An extension ofSimpleLiteral
that stores a calendar value to avoid parsing.class
DecimalLiteral
An extension ofSimpleLiteral
that stores an integer value using aBigDecimal
object.class
IntegerLiteral
An extension ofSimpleLiteral
that stores an integer value using aBigInteger
object.class
NumericLiteral
An extension ofAbstractLiteral
that stores a numeric value to avoid parsing.class
SimpleBNode
An simple default implementation of theBNode
interface.class
SimpleIRI
The default implementation of theIRI
interface.class
SimpleLiteral
A simple default implementation of theLiteral
interface.class
SimpleTriple
A simple default implementation of theTriple
interface.Fields in org.eclipse.rdf4j.model.impl declared as Value Modifier and Type Field Description protected Value
FilteredModel. obj
protected V
GenericStatement. object
private Value
SimpleStatement. object
Deprecated, for removal: This API element is subject to removal in a future version.The statement's object.private Value
SimpleTriple. object
The triple's object.private V
LinkedHashModel.ModelNode. value
Fields in org.eclipse.rdf4j.model.impl with type parameters of type Value Modifier and Type Field Description (package private) LinkedHashModel.ModelNode<Value>
LinkedHashModel.ModelStatement. obj
(package private) java.util.Map<Value,LinkedHashModel.ModelNode>
LinkedHashModel. values
Methods in org.eclipse.rdf4j.model.impl with type parameters of type Value Modifier and Type Method Description private <V extends Value>
LinkedHashModel.ModelNode<V>LinkedHashModel. asNode(V value)
Methods in org.eclipse.rdf4j.model.impl that return Value Modifier and Type Method Description Value
LinkedHashModel.ModelStatement. getObject()
Value
SimpleStatement. getObject()
Deprecated, for removal: This API element is subject to removal in a future version.Value
SimpleTriple. getObject()
private Value[]
TreeModel. notEmpty(Value[] contexts)
Methods in org.eclipse.rdf4j.model.impl that return types with arguments of type Value Modifier and Type Method Description java.util.Set<Value>
AbstractModel. objects()
java.util.Set<Value>
DynamicModel. objects()
Methods in org.eclipse.rdf4j.model.impl with parameters of type Value 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 Statement
TreeModel. after(Value subj, Value pred, Value obj, Value ctx)
private Statement
TreeModel. before(Value subj, Value pred, Value obj, Value ctx)
private java.util.Set<LinkedHashModel.ModelStatement>
LinkedHashModel. choose(Resource subj, IRI pred, Value obj, Resource... contexts)
private TreeModel.StatementTree
TreeModel. choose(Value subj, Value pred, Value obj, Value ctx)
(package private) int
TreeModel. compareValue(Value o1, Value o2)
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
SimpleStatement. exactSameObject(Value object)
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 TreeModel.StatementTree
TreeModel. index(Value subj, Value pred, Value obj, Value ctx)
boolean
TreeModel.StatementTree. isIndexed(Value subj, Value pred, Value obj, Value ctx)
private boolean
TreeModel. isResourceURIResource(Value subj, Value pred, Value ctx)
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 Value[]
TreeModel. notEmpty(Value[] 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 Value 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)
-
Uses of Value in org.eclipse.rdf4j.model.util
Fields in org.eclipse.rdf4j.model.util declared as Value Modifier and Type Field Description private Value[]
PatternIterator. contexts
private Value
PatternIterator. obj
private Value
PatternIterator. pred
private Value
PatternIterator. subj
Fields in org.eclipse.rdf4j.model.util with type parameters of type Value Modifier and Type Field Description private java.util.Map<Value,com.google.common.hash.HashCode>
GraphComparisons.Partitioning. staticValueMapping
Methods in org.eclipse.rdf4j.model.util with type parameters of type Value Modifier and Type Method Description 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.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.Methods in org.eclipse.rdf4j.model.util that return Value Modifier and Type Method Description private Value[]
PatternIterator. notNull(Value[] contexts)
Methods in org.eclipse.rdf4j.model.util that return types with arguments of type Value Modifier and Type Method Description 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.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.java.util.Map<Value,com.google.common.hash.HashCode>
GraphComparisons.Partitioning. getStaticValueMapping()
static java.util.Optional<Value>
Models. object(java.lang.Iterable<Statement> statements)
Retrieves an objectValue
from the supplied statements.static java.util.Optional<Value>
Models. object(Model m)
Retrieves an objectValue
from the statements in the given model.java.util.Set<Value>
SynchronizedModel. objects()
Methods in org.eclipse.rdf4j.model.util with parameters of type Value Modifier and Type Method Description boolean
SynchronizedModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)
private static boolean
Models. bnodeValueMatching(java.util.Map<Resource,Resource> bNodeMapping, Value obj1, Value obj2)
private static java.lang.String
ModelException. buildMessage(Value v1, Value v2)
int
LexicalValueComparator. compare(Value o1, Value o2)
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
.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.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 boolean
Literals. getBooleanValue(Value v, boolean fallback)
Returns the result ofgetBooleanValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.static byte
Literals. getByteValue(Value v, byte fallback)
Returns the result ofgetByteValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.static javax.xml.datatype.XMLGregorianCalendar
Literals. getCalendarValue(Value v, javax.xml.datatype.XMLGregorianCalendar fallback)
Returns the result ofgetCalendarValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.com.google.common.hash.HashCode
GraphComparisons.Partitioning. getCurrentHashCode(Value value)
static java.math.BigDecimal
Literals. getDecimalValue(Value v, java.math.BigDecimal fallback)
Returns the result ofgetDecimalValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.static double
Literals. getDoubleValue(Value v, double fallback)
Returns the result ofgetDoubleValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.static float
Literals. getFloatValue(Value v, float fallback)
Returns the result ofgetFloatValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.static java.math.BigInteger
Literals. getIntegerValue(Value v, java.math.BigInteger fallback)
Returns the result ofgetIntegerValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.static int
Literals. getIntValue(Value v, int fallback)
Returns the result ofgetIntValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.static java.lang.String
Literals. getLabel(Value v, java.lang.String fallback)
Returns the result ofgetLabel((Literal)v, fallback
in case the supplied value is a literal, returns the fallback value otherwise.static long
Literals. getLongValue(Value v, long fallback)
Returns the result ofgetLongValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.com.google.common.hash.HashCode
GraphComparisons.Partitioning. getPreviousHashCode(Value value)
static short
Literals. getShortValue(Value v, short fallback)
Returns the result ofgetShortValue((Literal)value, fallback)
in case the supplied value is a literal, returns the fallback value otherwise.private static boolean
Models. isBlank(Value value)
private Value[]
PatternIterator. notNull(Value[] contexts)
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(ValueFactory vf, Resource subject, IRI predicate, Value object, Resource context)
Create aStatement
from the supplied subject, predicate, object and context.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 Value Modifier and Type Method Description 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)
static java.lang.String
Literals. getLabel(java.util.Optional<Value> v, java.lang.String fallback)
Constructors in org.eclipse.rdf4j.model.util with parameters of type Value Constructor Description ModelException(Value value)
ModelException(Value v1, Value v2)
PatternIterator(java.util.Iterator<S> iter, Value subj, Value pred, Value obj, Value... contexts)
-
Uses of Value in org.eclipse.rdf4j.query
Methods in org.eclipse.rdf4j.query that return Value Modifier and Type Method Description Value
Binding. getValue()
Gets the value of the binding.Value
BindingSet. getValue(java.lang.String bindingName)
Gets the value of the binding with the specified name from this BindingSet.Methods in org.eclipse.rdf4j.query that return types with arguments of type Value Modifier and Type Method Description static java.util.List<Value>
QueryResults. getAllValues(TupleQueryResult result, java.lang.String var)
Returns a list of values of a particular variable out of the QueryResult.Methods in org.eclipse.rdf4j.query with parameters of type Value Modifier and Type Method Description default void
MutableBindingSet. addBinding(java.lang.String name, Value value)
Adds a binding to the binding set.void
MutableBindingSet. setBinding(java.lang.String name, Value value)
void
Operation. setBinding(java.lang.String name, Value value)
Binds the specified variable to the supplied value. -
Uses of Value in org.eclipse.rdf4j.query.algebra
Fields in org.eclipse.rdf4j.query.algebra declared as Value Modifier and Type Field Description private Value
ValueConstant. value
private Value
Var. value
Methods in org.eclipse.rdf4j.query.algebra that return Value Modifier and Type Method Description Value
ValueConstant. getValue()
Value
Var. getValue()
Methods in org.eclipse.rdf4j.query.algebra with parameters of type Value Modifier and Type Method Description void
ValueConstant. setValue(Value value)
void
Var. setValue(Value value)
Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.eclipse.rdf4j.query.algebra with parameters of type Value Constructor Description ValueConstant(Value value)
Var(java.lang.String name, Value value)
Var(java.lang.String name, Value value, boolean anonymous, boolean constant)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation
Fields in org.eclipse.rdf4j.query.algebra.evaluation declared as Value Modifier and Type Field Description private Value
QueryValueEvaluationStep.ConstantQueryValueEvaluationStep. value
private Value[]
ArrayBindingSet. values
Fields in org.eclipse.rdf4j.query.algebra.evaluation with type parameters of type Value Modifier and Type Field Description private java.util.Map<java.lang.String,Value>
QueryBindingSet. bindings
private java.util.function.Function<BindingSet,Value>
QueryValueEvaluationStep.ApplyFunctionForEachBinding. function
Methods in org.eclipse.rdf4j.query.algebra.evaluation that return Value Modifier and Type Method Description Value
EvaluationStrategy. evaluate(ValueExpr expr, BindingSet bindings)
Gets the value of this expression.Value
QueryValueEvaluationStep.ApplyFunctionForEachBinding. evaluate(BindingSet bindings)
Value
QueryValueEvaluationStep.ConstantQueryValueEvaluationStep. evaluate(BindingSet bindings)
Value
QueryValueEvaluationStep. evaluate(BindingSet bindings)
Value
QueryValueEvaluationStep.Fail. evaluate(BindingSet bindings)
Value
QueryValueEvaluationStep.Minimal. evaluate(BindingSet bindings)
Value
ArrayBindingSet. getValue(java.lang.String bindingName)
Value
QueryBindingSet. getValue(java.lang.String bindingName)
Methods in org.eclipse.rdf4j.query.algebra.evaluation that return types with arguments of type Value Modifier and Type Method Description java.util.function.BiConsumer<Value,ArrayBindingSet>
ArrayBindingSet. getDirectAddBinding(java.lang.String bindingName)
java.util.function.Function<ArrayBindingSet,Value>
ArrayBindingSet. getDirectGetValue(java.lang.String bindingName)
java.util.function.BiConsumer<Value,ArrayBindingSet>
ArrayBindingSet. getDirectSetBinding(java.lang.String bindingName)
This is used to generate a direct setter into the array to put a binding value into.Methods in org.eclipse.rdf4j.query.algebra.evaluation with parameters of type Value Modifier and Type Method Description void
QueryBindingSet. addBinding(java.lang.String name, Value value)
Adds a new binding to the binding set.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.void
ArrayBindingSet. setBinding(java.lang.String name, Value value)
void
QueryBindingSet. setBinding(java.lang.String name, Value value)
Constructors in org.eclipse.rdf4j.query.algebra.evaluation with parameters of type Value Constructor Description ConstantQueryValueEvaluationStep(Value valueConstant)
Constructor parameters in org.eclipse.rdf4j.query.algebra.evaluation with type arguments of type Value Constructor Description ApplyFunctionForEachBinding(java.util.function.Function<BindingSet,Value> function)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.federation
Methods in org.eclipse.rdf4j.query.algebra.evaluation.federation that return Value Modifier and Type Method Description private static Value
TupleFunctionFederatedService. getValue(Var var, BindingSet bs)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function that return Value Modifier and Type Method Description Value
BinaryFunction. evaluate(ValueFactory valueFactory, Value... args)
protected abstract Value
BinaryFunction. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
Function. evaluate(ValueFactory valueFactory, Value... args)
Deprecated.since 3.3.0.default Value
Function. evaluate(TripleSource tripleSource, Value... args)
Evaluate the function over the supplied input arguments.protected abstract Value
UnaryFunction. evaluate(ValueFactory valueFactory, Value arg)
Value
UnaryFunction. evaluate(ValueFactory valueFactory, Value... args)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function that return types with arguments of type Value Modifier and Type Method Description CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
TupleFunction. evaluate(ValueFactory valueFactory, Value... args)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function with parameters of type Value Modifier and Type Method Description Value
BinaryFunction. evaluate(ValueFactory valueFactory, Value... args)
protected abstract Value
BinaryFunction. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
Function. evaluate(ValueFactory valueFactory, Value... args)
Deprecated.since 3.3.0.default Value
Function. evaluate(TripleSource tripleSource, Value... args)
Evaluate the function over the supplied input arguments.CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
TupleFunction. evaluate(ValueFactory valueFactory, Value... args)
protected abstract Value
UnaryFunction. evaluate(ValueFactory valueFactory, Value arg)
Value
UnaryFunction. evaluate(ValueFactory valueFactory, Value... args)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.aggregate
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.aggregate that return Value Modifier and Type Method Description Value
StatisticCollector. getFinalValue()
Method parameters in org.eclipse.rdf4j.query.algebra.evaluation.function.aggregate with type arguments of type Value Modifier and Type Method Description void
StatisticalAggregateFunction. processAggregate(BindingSet bindingSet, java.util.function.Predicate<Value> distinctValue, StatisticCollector collector)
Constructor parameters in org.eclipse.rdf4j.query.algebra.evaluation.function.aggregate with type arguments of type Value Constructor Description StatisticalAggregateFunction(java.util.function.Function<BindingSet,Value> evaluationStep)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.aggregate.stdev
Method parameters in org.eclipse.rdf4j.query.algebra.evaluation.function.aggregate.stdev with type arguments of type Value Modifier and Type Method Description AggregateFunction
PopulationStandardDeviationAggregateFactory. buildFunction(java.util.function.Function<BindingSet,Value> evaluationStep)
AggregateFunction
StandardDeviationAggregateFactory. buildFunction(java.util.function.Function<BindingSet,Value> evaluationStep)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.aggregate.variance
Method parameters in org.eclipse.rdf4j.query.algebra.evaluation.function.aggregate.variance with type arguments of type Value Modifier and Type Method Description AggregateFunction
PopulationVarianceAggregateFactory. buildFunction(java.util.function.Function<BindingSet,Value> evaluationStep)
AggregateFunction
VarianceAggregateFactory. buildFunction(java.util.function.Function<BindingSet,Value> evaluationStep)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.datetime
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.datetime with parameters of type Value Modifier and Type Method Description Literal
Day. evaluate(ValueFactory valueFactory, Value... args)
Literal
Hours. evaluate(ValueFactory valueFactory, Value... args)
Literal
Minutes. evaluate(ValueFactory valueFactory, Value... args)
Literal
Month. evaluate(ValueFactory valueFactory, Value... args)
Literal
Now. evaluate(ValueFactory valueFactory, Value... args)
Literal
Seconds. evaluate(ValueFactory valueFactory, Value... args)
Literal
Timezone. evaluate(ValueFactory valueFactory, Value... args)
Literal
Tz. evaluate(ValueFactory valueFactory, Value... args)
Literal
Year. evaluate(ValueFactory valueFactory, Value... args)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.geosparql
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.geosparql that return Value Modifier and Type Method Description Value
Buffer. evaluate(ValueFactory valueFactory, Value... args)
Value
Distance. evaluate(ValueFactory valueFactory, Value... args)
Value
GeometricBinaryFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
GeometricRelationFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
GeometricUnaryFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
Relate. evaluate(ValueFactory valueFactory, Value... args)
Value
SRID. evaluate(ValueFactory valueFactory, Value... args)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.geosparql with parameters of type Value Modifier and Type Method Description Value
Buffer. evaluate(ValueFactory valueFactory, Value... args)
Value
Distance. evaluate(ValueFactory valueFactory, Value... args)
Value
GeometricBinaryFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
GeometricRelationFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
GeometricUnaryFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
Relate. evaluate(ValueFactory valueFactory, Value... args)
Value
SRID. evaluate(ValueFactory valueFactory, Value... args)
static double
FunctionArguments. getDouble(Function func, Value v)
Get the double valuestatic Literal
FunctionArguments. getLiteral(Function func, Value v, IRI expectedDatatype)
Get the literal of a specific data typestatic org.locationtech.spatial4j.shape.Point
FunctionArguments. getPoint(Function func, Value v, org.locationtech.spatial4j.context.SpatialContext geoContext)
Get the geo pointstatic org.locationtech.spatial4j.shape.Shape
FunctionArguments. getShape(Function func, Value v, org.locationtech.spatial4j.context.SpatialContext context)
Get the geo shapestatic java.lang.String
FunctionArguments. getString(Function func, Value v)
Get the string valuestatic IRI
FunctionArguments. getUnits(Function func, Value v)
Get the UoM IRI of the unit -
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.hash
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.hash with parameters of type Value Modifier and Type Method Description abstract Literal
HashFunction. evaluate(ValueFactory valueFactory, Value... args)
Literal
MD5. evaluate(ValueFactory valueFactory, Value... args)
Literal
SHA1. evaluate(ValueFactory valueFactory, Value... args)
Literal
SHA256. evaluate(ValueFactory valueFactory, Value... args)
Literal
SHA384. evaluate(ValueFactory valueFactory, Value... args)
Literal
SHA512. evaluate(ValueFactory valueFactory, Value... args)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.numeric
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.numeric with parameters of type Value Modifier and Type Method Description Literal
Abs. evaluate(ValueFactory valueFactory, Value... args)
Literal
Ceil. evaluate(ValueFactory valueFactory, Value... args)
Literal
Floor. evaluate(ValueFactory valueFactory, Value... args)
Literal
Rand. evaluate(ValueFactory valueFactory, Value... args)
Literal
Round. evaluate(ValueFactory valueFactory, Value... args)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.rdfterm
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.rdfterm with parameters of type Value Modifier and Type Method Description Literal
StrDt. evaluate(ValueFactory valueFactory, Value... args)
Literal
StrLang. evaluate(ValueFactory valueFactory, Value... args)
Literal
STRUUID. evaluate(ValueFactory valueFactory, Value... args)
IRI
UUID. evaluate(ValueFactory valueFactory, Value... args)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.string
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.string with parameters of type Value Modifier and Type Method Description Literal
Concat. evaluate(ValueFactory valueFactory, Value... args)
Literal
Contains. evaluate(ValueFactory valueFactory, Value... args)
Literal
EncodeForUri. evaluate(ValueFactory valueFactory, Value... args)
Literal
LowerCase. evaluate(ValueFactory valueFactory, Value... args)
Literal
Replace. evaluate(ValueFactory valueFactory, Value... args)
Literal
StrAfter. evaluate(ValueFactory valueFactory, Value... args)
Literal
StrBefore. evaluate(ValueFactory valueFactory, Value... args)
Literal
StrEnds. evaluate(ValueFactory valueFactory, Value... args)
Literal
StrLen. evaluate(ValueFactory valueFactory, Value... args)
Literal
StrStarts. evaluate(ValueFactory valueFactory, Value... args)
Literal
Substring. evaluate(ValueFactory valueFactory, Value... args)
Literal
UpperCase. evaluate(ValueFactory valueFactory, Value... args)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.triple
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.triple that return Value Modifier and Type Method Description Value
IsTripleFunction. evaluate(ValueFactory vf, Value... args)
Value
StatementFunction. evaluate(ValueFactory vf, Value... args)
Value
TripleObjectFunction. evaluate(ValueFactory vf, Value... args)
Value
TriplePredicateFunction. evaluate(ValueFactory vf, Value... args)
Value
TripleSubjectFunction. evaluate(ValueFactory vf, Value... args)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.triple with parameters of type Value Modifier and Type Method Description Value
IsTripleFunction. evaluate(ValueFactory vf, Value... args)
Value
StatementFunction. evaluate(ValueFactory vf, Value... args)
Value
TripleObjectFunction. evaluate(ValueFactory vf, Value... args)
Value
TriplePredicateFunction. evaluate(ValueFactory vf, Value... args)
Value
TripleSubjectFunction. evaluate(ValueFactory vf, Value... args)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.function.xsd
Methods in org.eclipse.rdf4j.query.algebra.evaluation.function.xsd with parameters of type Value Modifier and Type Method Description protected Literal
BooleanCast. convert(ValueFactory valueFactory, Value value)
protected abstract Literal
CastFunction. convert(ValueFactory vf, Value v)
Convert the supplied value to a literal of the function output datatype.protected Literal
DateCast. convert(ValueFactory vf, Value value)
protected Literal
DateTimeCast. convert(ValueFactory vf, Value value)
protected Literal
DecimalCast. convert(ValueFactory valueFactory, Value value)
protected Literal
DoubleCast. convert(ValueFactory valueFactory, Value value)
protected Literal
FloatCast. convert(ValueFactory valueFactory, Value value)
protected Literal
IntegerCastFunction. convert(ValueFactory valueFactory, Value value)
protected Literal
StringCast. convert(ValueFactory valueFactory, Value value)
Literal
CastFunction. evaluate(ValueFactory valueFactory, Value... args)
Literal
StringCast. evaluate(ValueFactory valueFactory, Value... args)
protected ValueExprEvaluationException
CastFunction. typeError(Value arg, java.lang.Throwable cause)
Creates aValueExprEvaluationException
that signals a type error. -
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.impl
Fields in org.eclipse.rdf4j.query.algebra.evaluation.impl declared as Value Modifier and Type Field Description private Value
SameTermFilterOptimizer.VarBinder. value
Deprecated, for removal: This API element is subject to removal in a future version.Fields in org.eclipse.rdf4j.query.algebra.evaluation.impl with type parameters of type Value Modifier and Type Field Description private java.util.function.Function<ArrayBindingSet,Value>
ArrayBindingBasedQueryEvaluationContext.ValueGetter. directAccessForVariable
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl that return Value Modifier and Type Method Description Value
ArrayBindingBasedQueryEvaluationContext.ValueGetter. apply(BindingSet bs)
Value
DefaultEvaluationStrategy. evaluate(And node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(BNodeGenerator node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Bound node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Coalesce node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(CompareAll node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(CompareAny node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Compare node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Datatype node, BindingSet bindings)
Value
DefaultEvaluationStrategy. evaluate(Now node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Exists node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(FunctionCall node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(If node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(In node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(IsBNode node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(IsLiteral node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(IsNumeric node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(IsResource node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(IsURI node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Label node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(LangMatches node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Lang node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Like node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(ListMemberOperator node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(LocalName node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(MathExpr node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Namespace node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Not node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Or node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Regex node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(SameTerm node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Str node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(ValueConstant valueConstant, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(ValueExpr expr, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(ValueExprTripleRef node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
DefaultEvaluationStrategy. evaluate(Var var, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
ExtendedEvaluationStrategy. evaluate(Compare node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.Value
ExtendedEvaluationStrategy. evaluate(MathExpr node, BindingSet bindings)
Deprecated, for removal: This API element is subject to removal in a future version.private Value[]
DefaultEvaluationStrategy. evaluateAllArguments(java.util.List<ValueExpr> args, QueryValueEvaluationStep[] argSteps, BindingSet bindings)
private Value
DefaultEvaluationStrategy. evaluateLangMatch(Value langTagValue, Value langRangeValue)
private Value
SameTermFilterOptimizer.SameTermFilterVisitor. getValue(ValueExpr valueExpr)
Deprecated, for removal: This API element is subject to removal in a future version.static Value
DefaultEvaluationStrategy. getVarValue(Var var, BindingSet bindings)
private Value
ExtendedEvaluationStrategy. mathOperationApplier(MathExpr node, Value leftVal, Value rightVal)
Deprecated, for removal: This API element is subject to removal in a future version.Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl that return types with arguments of type Value Modifier and Type Method Description java.util.function.BiConsumer<Value,MutableBindingSet>
ArrayBindingBasedQueryEvaluationContext. addBinding(java.lang.String variableName)
default java.util.function.BiConsumer<Value,MutableBindingSet>
QueryEvaluationContext. addBinding(java.lang.String variableName)
java.util.function.Function<BindingSet,Value>
ArrayBindingBasedQueryEvaluationContext. getValue(java.lang.String variableName)
default java.util.function.Function<BindingSet,Value>
QueryEvaluationContext. getValue(java.lang.String variableName)
private java.util.function.BiFunction<Value,Value,Value>
DefaultEvaluationStrategy. mathOperationApplier(MathExpr node, QueryEvaluationMode queryEvaluationMode, ValueFactory vf)
private java.util.function.BiFunction<Value,Value,Value>
DefaultEvaluationStrategy. mathOperationApplier(MathExpr node, QueryEvaluationMode queryEvaluationMode, ValueFactory vf)
private java.util.function.BiFunction<Value,Value,Value>
DefaultEvaluationStrategy. mathOperationApplier(MathExpr node, QueryEvaluationMode queryEvaluationMode, ValueFactory vf)
java.util.function.BiConsumer<Value,MutableBindingSet>
ArrayBindingBasedQueryEvaluationContext. setBinding(java.lang.String variableName)
default java.util.function.BiConsumer<Value,MutableBindingSet>
QueryEvaluationContext. setBinding(java.lang.String variableName)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl with parameters of type Value Modifier and Type Method Description private void
SameTermFilterOptimizer.SameTermFilterVisitor. bindVar(Var var, Value value, Filter filter)
Deprecated, for removal: This API element is subject to removal in a future version.(package private) static CloseableIteration<BindingSet,QueryEvaluationException>
DefaultEvaluationStrategy. evaluate(TupleFunction func, java.util.List<Var> resultVars, BindingSet bindings, ValueFactory valueFactory, Value... argValues)
static CloseableIteration<BindingSet,QueryEvaluationException>
TupleFunctionEvaluationStrategy. evaluate(TupleFunction func, java.util.List<Var> resultVars, BindingSet bindings, ValueFactory valueFactory, Value... argValues)
Deprecated, for removal: This API element is subject to removal in a future version.private Value
DefaultEvaluationStrategy. evaluateLangMatch(Value langTagValue, Value langRangeValue)
private static boolean
DefaultEvaluationStrategy. isNumeric(Value argValue)
private Value
ExtendedEvaluationStrategy. mathOperationApplier(MathExpr node, Value leftVal, Value rightVal)
Deprecated, for removal: This API element is subject to removal in a future version.Method parameters in org.eclipse.rdf4j.query.algebra.evaluation.impl with type arguments of type Value Modifier and Type Method Description protected QueryValueEvaluationStep
DefaultEvaluationStrategy. supplyBinaryValueEvaluation(BinaryValueOperator node, java.util.function.BiFunction<Value,Value,Value> operation, QueryEvaluationContext context)
Supply a QueryValueEvalationStep that will invoke the function (operator passed in).protected QueryValueEvaluationStep
DefaultEvaluationStrategy. supplyBinaryValueEvaluation(BinaryValueOperator node, java.util.function.BiFunction<Value,Value,Value> operation, QueryEvaluationContext context)
Supply a QueryValueEvalationStep that will invoke the function (operator passed in).protected QueryValueEvaluationStep
DefaultEvaluationStrategy. supplyBinaryValueEvaluation(BinaryValueOperator node, java.util.function.BiFunction<Value,Value,Value> operation, QueryEvaluationContext context)
Supply a QueryValueEvalationStep that will invoke the function (operator passed in).protected QueryValueEvaluationStep
DefaultEvaluationStrategy. supplyUnaryValueEvaluation(UnaryValueOperator node, java.util.function.Function<Value,Value> operation, QueryEvaluationContext context)
Return a QueryEvaluationStep that applies constant propegation.protected QueryValueEvaluationStep
DefaultEvaluationStrategy. supplyUnaryValueEvaluation(UnaryValueOperator node, java.util.function.Function<Value,Value> operation, QueryEvaluationContext context)
Return a QueryEvaluationStep that applies constant propegation.Constructors in org.eclipse.rdf4j.query.algebra.evaluation.impl with parameters of type Value Constructor Description VarBinder(java.lang.String varName, Value value)
Deprecated, for removal: This API element is subject to removal in a future version.Constructor parameters in org.eclipse.rdf4j.query.algebra.evaluation.impl with type arguments of type Value Constructor Description ValueGetter(java.lang.String variableName, java.util.function.Function<ArrayBindingSet,Value> directAccessForVariable)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps
Fields in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps with type parameters of type Value Modifier and Type Field Description private java.util.function.Function<Value,Resource[]>
StatementPatternQueryEvaluationStep. contextSup
private java.util.function.Function<BindingSet,Value>
StatementPatternQueryEvaluationStep. getContextVar
private java.util.function.Function<BindingSet,Value>
StatementPatternQueryEvaluationStep. getObjectVar
private java.util.function.Function<BindingSet,Value>
StatementPatternQueryEvaluationStep. getPredicateVar
private java.util.function.Function<BindingSet,Value>
StatementPatternQueryEvaluationStep. getSubjectVar
private static java.util.function.Function<Value,Resource[]>
StatementPatternQueryEvaluationStep. RETURN_NULL_VALUE_RESOURCE_ARRAY
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps that return Value Modifier and Type Method Description Value
RegexValueEvaluationStepSupplier.ChangingRegexQueryValueEvaluationStep. evaluate(BindingSet bindings)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps that return types with arguments of type Value Modifier and Type Method Description protected static java.util.function.Function<Value,Resource[]>
StatementPatternQueryEvaluationStep. extractContextsFromDatasets(Var contextVar, boolean emptyGraph, java.util.Set<IRI> graphs)
private static java.util.function.Function<BindingSet,Value>
StatementPatternQueryEvaluationStep. makeGetVarValue(Var var, QueryEvaluationContext context)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps with parameters of type Value Modifier and Type Method Description private static Resource[]
StatementPatternQueryEvaluationStep. contextsGivenContextVal(Value contextValue)
private static int
RegexValueEvaluationStepSupplier. extractRegexFlags(Value farg)
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 static java.util.function.Predicate<Statement>
StatementPatternQueryEvaluationStep. filterSameVariable(StatementPattern statementPattern, Value subjValue, Value predValue, Value objValue, java.util.function.Predicate<Statement> filter)
Build one predicate that filters the statements for ?s ?p ?s cases.protected ZeroLengthPathIteration
ZeroLengthPathEvaluationStep. getZeroLengthPathIterator(BindingSet bindings, Var subjectVar, Var objVar, Var contextVar, Value subj, Value obj, QueryEvaluationContext context)
private CloseableIteration<? extends Statement,QueryEvaluationException>
StatementPatternQueryEvaluationStep. handleFilter(Resource[] contexts, Resource subject, IRI predicate, Value object, CloseableIteration<? extends Statement,QueryEvaluationException> iteration)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps.values
Fields in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps.values with type parameters of type Value Modifier and Type Field Description private java.util.function.Function<BindingSet,Value>
CompareAllQueryValueEvaluationStep. getValue
private java.util.function.Function<BindingSet,Value>
CompareAnyValueEvaluationStep. getValue
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps.values that return Value Modifier and Type Method Description private static Value
QueryValueEvaluationStepSupplier. bound(QueryValueEvaluationStep arg, BindingSet bindings)
private static Value
QueryValueEvaluationStepSupplier. datatype(QueryValueEvaluationStep arg, BindingSet bindings)
Value
AndValueEvaluationStep. evaluate(BindingSet bindings)
Value
CompareAllQueryValueEvaluationStep. evaluate(BindingSet bindings)
Value
CompareAnyValueEvaluationStep. evaluate(BindingSet bindings)
Value
ExistsQueryValueEvaluationStep. evaluate(BindingSet bindings)
Value
IfValueEvaluationStep. evaluate(BindingSet bindings)
Value
InValueEvaluationStep. evaluate(BindingSet bindings)
Value
ListMemberValueOperationStep. evaluate(BindingSet bindings)
Value
OrValueEvaluationStep. evaluate(BindingSet bindings)
Value
ValueExprTripleRefEvaluationStep. evaluate(BindingSet bindings)
private static Value
QueryValueEvaluationStepSupplier. label(QueryValueEvaluationStep arg, BindingSet bindings, ValueFactory vf)
private static Value
QueryValueEvaluationStepSupplier. lang(QueryValueEvaluationStep arg, BindingSet bindings, ValueFactory valueFactory)
private static Value
QueryValueEvaluationStepSupplier. localName(QueryValueEvaluationStep arg, BindingSet bindings, ValueFactory valueFactory)
private static Value
QueryValueEvaluationStepSupplier. namespace(QueryValueEvaluationStep arg, BindingSet bindings, ValueFactory valueFactory)
private static Value
QueryValueEvaluationStepSupplier. str(QueryValueEvaluationStep arg, ValueFactory valueFactory, BindingSet bindings)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps.values with parameters of type Value Modifier and Type Method Description private static IRI
QueryValueEvaluationStepSupplier. iriFunction(java.lang.String baseURI, Value argValue, ValueFactory vf)
Method parameters in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps.values with type arguments of type Value Modifier and Type Method Description private static QueryValueEvaluationStep
QueryValueEvaluationStepSupplier. make(QueryValueEvaluationStep arg, java.lang.String errorMessage, java.util.function.Function<BindingSet,Value> function)
static QueryValueEvaluationStep
QueryValueEvaluationStepSupplier. prepareIs(QueryValueEvaluationStep arg, java.util.function.Predicate<Value> is)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.iterator
Fields in org.eclipse.rdf4j.query.algebra.evaluation.iterator declared as Value Modifier and Type Field Description private Value
PathIteration.ValuePair. endValue
private Value
ZeroLengthPathIteration. obj
private Value
GroupIterator.SampleCollector. sample
private Value
DescribeIteration. startValue
Deprecated.private Value
PathIteration.ValuePair. startValue
private Value
ZeroLengthPathIteration. subj
private Value
GroupIterator.ValueCollector. value
private Value[]
BindingSetHashKey. values
Fields in org.eclipse.rdf4j.query.algebra.evaluation.iterator with type parameters of type Value Modifier and Type Field Description private static java.util.function.Predicate<Value>
GroupIterator. ALWAYS_TRUE_VALUE
private static java.util.function.Supplier<java.util.function.Predicate<Value>>
GroupIterator. ALWAYS_TRUE_VALUE_SUPPLIER
private java.util.Set<Value>
GroupIterator.DistinctValues. distinctValues
private java.util.Set<Value>
ZeroLengthPathIteration. reportedValues
private java.util.function.BiConsumer<Value,MutableBindingSet>
ZeroLengthPathIteration. setContext
private java.util.function.BiConsumer<Value,MutableBindingSet>
ZeroLengthPathIteration. setObject
private java.util.function.BiConsumer<Value,MutableBindingSet>
ZeroLengthPathIteration. setSubject
Methods in org.eclipse.rdf4j.query.algebra.evaluation.iterator that return Value Modifier and Type Method Description Value
GroupIterator.QueryStepEvaluator. apply(BindingSet bindings)
Value
PathIteration.ValuePair. getEndValue()
Value
GroupIterator.AvgCollector. getFinalValue()
Value
GroupIterator.CountCollector. getFinalValue()
Value
GroupIterator.IntegerCollector. getFinalValue()
Value
GroupIterator.SampleCollector. getFinalValue()
Value
GroupIterator.StringBuilderCollector. getFinalValue()
Value
GroupIterator.ValueCollector. getFinalValue()
Value
PathIteration.ValuePair. getStartValue()
private Value
PathIteration. getVarValue(Var var, boolean fixedValue, BindingSet bindingSet)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.iterator with parameters of type Value Modifier and Type Method Description private void
PathIteration. addBinding(MutableBindingSet bs, java.lang.String name, Value value)
private Var
PathIteration. createAnonVar(java.lang.String varName, Value v, boolean anonymous)
protected CloseableIteration<BindingSet,QueryEvaluationException>
DescribeIteration. createNextIteration(Value subject, Value object)
Deprecated.boolean
GroupIterator.DistinctValues. test(Value value)
Method parameters in org.eclipse.rdf4j.query.algebra.evaluation.iterator with type arguments of type Value Modifier and Type Method Description private java.util.function.BiConsumer<BindingSet,MutableBindingSet>
GroupIterator. makeSetAValue(java.util.List<java.util.function.Function<BindingSet,Value>> getValues, java.util.List<java.util.function.BiConsumer<Value,MutableBindingSet>> setBindings, int i)
private java.util.function.BiConsumer<BindingSet,MutableBindingSet>
GroupIterator. makeSetValues(java.util.List<java.util.function.Function<BindingSet,Value>> getValues, java.util.List<java.util.function.BiConsumer<Value,MutableBindingSet>> setBindings)
Build a single method that sets all values without a loop or lookups during evaluation.void
GroupIterator.AvgAggregate. processAggregate(BindingSet s, java.util.function.Predicate<Value> distinctValue, GroupIterator.AvgCollector avg)
void
GroupIterator.ConcatAggregate. processAggregate(BindingSet s, java.util.function.Predicate<Value> distinctValue, GroupIterator.StringBuilderCollector collector)
void
GroupIterator.CountAggregate. processAggregate(BindingSet s, java.util.function.Predicate<Value> distinctValue, GroupIterator.CountCollector agv)
void
GroupIterator.MaxAggregate. processAggregate(BindingSet s, java.util.function.Predicate<Value> distinctValue, GroupIterator.ValueCollector max)
void
GroupIterator.MinAggregate. processAggregate(BindingSet s, java.util.function.Predicate<Value> distinctValue, GroupIterator.ValueCollector min)
void
GroupIterator.SampleAggregate. processAggregate(BindingSet s, java.util.function.Predicate<Value> distinct, GroupIterator.SampleCollector sample)
void
GroupIterator.SumAggregate. processAggregate(BindingSet s, java.util.function.Predicate<Value> distinctValue, GroupIterator.IntegerCollector sum)
private static void
ExtensionIterator. setValue(java.util.function.BiConsumer<Value,MutableBindingSet> setBinding, QueryValueEvaluationStep prepared, MutableBindingSet targetBindings)
Deprecated.Constructors in org.eclipse.rdf4j.query.algebra.evaluation.iterator with parameters of type Value Constructor Description BindingSetHashKey(Value[] values)
ValuePair(Value startValue, Value endValue)
ZeroLengthPathIteration(EvaluationStrategy evaluationStrategyImpl, Var subjectVar, Var objVar, Value subj, Value obj, Var contextVar, BindingSet bindings, QueryEvaluationContext context)
Constructor parameters in org.eclipse.rdf4j.query.algebra.evaluation.iterator with type arguments of type Value Constructor Description AvgAggregate(java.util.function.Function<BindingSet,Value> operator)
ConcatAggregate(java.util.function.Function<BindingSet,Value> f)
ConcatAggregate(java.util.function.Function<BindingSet,Value> f, java.lang.String seperator)
CountAggregate(java.util.function.Function<BindingSet,Value> f)
MaxAggregate(java.util.function.Function<BindingSet,Value> f, boolean strict)
MinAggregate(java.util.function.Function<BindingSet,Value> f, boolean strict)
SampleAggregate(java.util.function.Function<BindingSet,Value> f)
SumAggregate(java.util.function.Function<BindingSet,Value> f)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.optimizer
Fields in org.eclipse.rdf4j.query.algebra.evaluation.optimizer declared as Value Modifier and Type Field Description private Value
SameTermFilterOptimizer.VarBinder. value
Methods in org.eclipse.rdf4j.query.algebra.evaluation.optimizer that return Value Modifier and Type Method Description private Value
SameTermFilterOptimizer.SameTermFilterVisitor. getValue(ValueExpr valueExpr)
Methods in org.eclipse.rdf4j.query.algebra.evaluation.optimizer with parameters of type Value Modifier and Type Method Description private void
SameTermFilterOptimizer.SameTermFilterVisitor. bindVar(Var var, Value value, Filter filter)
Constructors in org.eclipse.rdf4j.query.algebra.evaluation.optimizer with parameters of type Value Constructor Description VarBinder(java.lang.String varName, Value value)
-
Uses of Value in org.eclipse.rdf4j.query.algebra.evaluation.util
Methods in org.eclipse.rdf4j.query.algebra.evaluation.util that return Value Modifier and Type Method Description static Value
TripleSources. singleValue(Resource subj, IRI pred, 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 that return types with arguments of type Value Modifier and Type Method Description static Iteration<Value,QueryEvaluationException>
TripleSources. list(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 Value Modifier and Type Method Description static boolean
QueryEvaluationUtil. compare(Value leftVal, Value rightVal, Compare.CompareOp operator)
static boolean
QueryEvaluationUtil. compare(Value leftVal, Value rightVal, Compare.CompareOp operator, boolean strict)
static QueryEvaluationUtility.Result
QueryEvaluationUtility. compare(Value leftVal, Value rightVal, Compare.CompareOp operator)
static QueryEvaluationUtility.Result
QueryEvaluationUtility. compare(Value leftVal, Value rightVal, Compare.CompareOp operator, boolean strict)
int
ValueComparator. compare(Value o1, Value o2)
static boolean
QueryEvaluationUtil. getEffectiveBooleanValue(Value value)
Determines the effective boolean value (EBV) of the supplied value as defined in the SPARQL specification: The EBV of any literal whose type is CoreDatatype.XSD:boolean or numeric is false if the lexical form is not valid for that datatype (e.g.static QueryEvaluationUtility.Result
QueryEvaluationUtility. getEffectiveBooleanValue(Value value)
Determines the effective boolean value (EBV) of the supplied value as defined in the SPARQL specification: The EBV of any literal whose type is CoreDatatype.XSD:boolean or numeric is false if the lexical form is not valid for that datatype (e.g.static CloseableIteration<IRI,QueryEvaluationException>
TripleSources. getSubjectURIs(IRI predicate, Value object, TripleSource store)
Deprecated, for removal: This API element is subject to removal in a future version.static boolean
QueryEvaluationUtil. isPlainLiteral(Value v)
Checks whether the supplied value is a "plain literal".static boolean
QueryEvaluationUtility. isPlainLiteral(Value v)
Checks whether the supplied value is a "plain literal".static boolean
QueryEvaluationUtil. isSimpleLiteral(Value v)
Checks whether the supplied value is a "simple literal".static boolean
QueryEvaluationUtility. isSimpleLiteral(Value v)
Checks whether the supplied value is a "simple literal".static boolean
QueryEvaluationUtil. isStringLiteral(Value v)
Checks whether the supplied literal is a "string literal".static boolean
QueryEvaluationUtility. isStringLiteral(Value v)
Checks whether the supplied literal is a "string literal".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. -
Uses of Value in org.eclipse.rdf4j.query.algebra.helpers
Methods in org.eclipse.rdf4j.query.algebra.helpers with parameters of type Value Modifier and Type Method Description static Var
TupleExprs. createConstVar(Value value)
Creates an (anonymous) Var representing a constant value.static java.lang.String
TupleExprs. getConstVarName(Value value)
-
Uses of Value in org.eclipse.rdf4j.query.dawg
Methods in org.eclipse.rdf4j.query.dawg with parameters of type Value Modifier and Type Method Description private void
DAWGTestResultSetWriter. reportStatement(Resource subject, IRI predicate, Value object)
-
Uses of Value in org.eclipse.rdf4j.query.impl
Fields in org.eclipse.rdf4j.query.impl declared as Value Modifier and Type Field Description private Value
SimpleBinding. value
Fields in org.eclipse.rdf4j.query.impl with type parameters of type Value Modifier and Type Field Description private java.util.List<? extends Value>
ListBindingSet. values
Methods in org.eclipse.rdf4j.query.impl that return Value Modifier and Type Method Description Value
EmptyBindingSet. getValue(java.lang.String bindingName)
Value
ListBindingSet. getValue(java.lang.String bindingName)
Value
MapBindingSet. getValue(java.lang.String bindingName)
Value
SimpleBinding. getValue()
Methods in org.eclipse.rdf4j.query.impl with parameters of type Value Modifier and Type Method Description void
AbstractOperation. setBinding(java.lang.String name, Value value)
void
MapBindingSet. setBinding(java.lang.String name, Value value)
Constructors in org.eclipse.rdf4j.query.impl with parameters of type Value Constructor Description BindingImpl(java.lang.String name, Value value)
Deprecated.ListBindingSet(java.util.List<java.lang.String> names, Value... values)
Creates a new List-based BindingSet containing the supplied bindings.SimpleBinding(java.lang.String name, Value value)
Creates a binding object with the supplied name and value. -
Uses of Value in org.eclipse.rdf4j.query.parser.sparql
Methods in org.eclipse.rdf4j.query.parser.sparql that return Value Modifier and Type Method Description protected Value
TupleExprBuilder. getValueForExpr(ValueExpr valueExpr)
Retrieve the associated Value (if any) for the given valueExpr. -
Uses of Value in org.eclipse.rdf4j.query.parser.sparql.aggregate
Fields in org.eclipse.rdf4j.query.parser.sparql.aggregate with type parameters of type Value Modifier and Type Field Description protected java.util.function.Function<BindingSet,Value>
AggregateFunction. evaluationStep
Methods in org.eclipse.rdf4j.query.parser.sparql.aggregate that return Value Modifier and Type Method Description protected Value
AggregateFunction. evaluate(BindingSet s)
Value
AggregateCollector. getFinalValue()
Method parameters in org.eclipse.rdf4j.query.parser.sparql.aggregate with type arguments of type Value Modifier and Type Method Description AggregateFunction
AggregateFunctionFactory. buildFunction(java.util.function.Function<BindingSet,Value> evaluationStep)
Builds an aggregate function with input evaluation stepConstructor parameters in org.eclipse.rdf4j.query.parser.sparql.aggregate with type arguments of type Value Constructor Description AggregateFunction(java.util.function.Function<BindingSet,Value> evaluationStep)
-
Uses of Value in org.eclipse.rdf4j.query.parser.sparql.ast
Fields in org.eclipse.rdf4j.query.parser.sparql.ast declared as Value Modifier and Type Field Description private Value
ASTRDFValue. value
Methods in org.eclipse.rdf4j.query.parser.sparql.ast that return Value Modifier and Type Method Description Value
ASTRDFValue. getRDFValue()
Methods in org.eclipse.rdf4j.query.parser.sparql.ast with parameters of type Value Modifier and Type Method Description void
ASTRDFValue. setRDFValue(Value value)
-
Uses of Value in org.eclipse.rdf4j.query.resultio
Fields in org.eclipse.rdf4j.query.resultio with type parameters of type Value Modifier and Type Field Description private java.util.function.Function<Value,Value>
ValueMappingBindingSet. mapper
private java.util.function.Function<Value,Value>
ValueMappingBindingSet. mapper
Methods in org.eclipse.rdf4j.query.resultio that return Value Modifier and Type Method Description Value
ValueMappingBindingSet. getValue(java.lang.String bindingName)
Constructor parameters in org.eclipse.rdf4j.query.resultio with type arguments of type Value Constructor Description ValueMappingBindingSet(BindingSet delegate, java.util.function.Function<Value,Value> mapper)
ValueMappingBindingSet(BindingSet delegate, java.util.function.Function<Value,Value> mapper)
-
Uses of Value in org.eclipse.rdf4j.query.resultio.binary
Methods in org.eclipse.rdf4j.query.resultio.binary that return Value Modifier and Type Method Description private Value
BinaryQueryResultParser. readDirectValue()
Methods in org.eclipse.rdf4j.query.resultio.binary with parameters of type Value Modifier and Type Method Description private void
BinaryQueryResultWriter. writeValue(Value value)
-
Uses of Value in org.eclipse.rdf4j.query.resultio.sparqljson
Methods in org.eclipse.rdf4j.query.resultio.sparqljson that return Value Modifier and Type Method Description protected Value
AbstractSPARQLJSONParser. parseValue(com.fasterxml.jackson.core.JsonParser jp, java.lang.String bindingStr)
private Value
AbstractSPARQLJSONParser. parseValue(java.lang.String type, java.lang.String value, java.lang.String language, java.lang.String datatype)
Parse a value out of the elements for a binding.Methods in org.eclipse.rdf4j.query.resultio.sparqljson with parameters of type Value Modifier and Type Method Description protected void
AbstractSPARQLJSONWriter. writeValue(Value value)
protected void
SPARQLResultsJSONWriter. writeValue(Value value)
-
Uses of Value in org.eclipse.rdf4j.query.resultio.sparqlxml
Fields in org.eclipse.rdf4j.query.resultio.sparqlxml declared as Value Modifier and Type Field Description private Value
SPARQLResultsSAXParser. currentValue
The most recently parsed value.private Value
SPARQLResultsSAXParser.TripleContainer. object
Methods in org.eclipse.rdf4j.query.resultio.sparqlxml that return Value Modifier and Type Method Description Value
SPARQLResultsSAXParser.TripleContainer. getObject()
Methods in org.eclipse.rdf4j.query.resultio.sparqlxml with parameters of type Value Modifier and Type Method Description void
SPARQLResultsSAXParser.TripleContainer. setObject(Value object)
private void
AbstractSPARQLXMLWriter. writeValue(Value value)
-
Uses of Value in org.eclipse.rdf4j.query.resultio.text
Methods in org.eclipse.rdf4j.query.resultio.text that return Value Modifier and Type Method Description protected Value
SPARQLResultsXSVMappingStrategy. parseNumberPatternMatch(java.lang.String valueString)
This method parses a number as matched bySPARQLResultsXSVMappingStrategy.numberPattern
into aValue
. -
Uses of Value in org.eclipse.rdf4j.query.resultio.text.csv
Methods in org.eclipse.rdf4j.query.resultio.text.csv with parameters of type Value Modifier and Type Method Description protected void
SPARQLResultsCSVWriter. writeValue(Value val)
-
Uses of Value in org.eclipse.rdf4j.query.resultio.text.tsv
Methods in org.eclipse.rdf4j.query.resultio.text.tsv that return Value Modifier and Type Method Description protected Value
SPARQLResultsTSVMappingStrategy. parseValue(java.lang.String valueString)
Methods in org.eclipse.rdf4j.query.resultio.text.tsv with parameters of type Value Modifier and Type Method Description protected void
SPARQLResultsTSVWriter. writeValue(Value val)
-
Uses of Value in org.eclipse.rdf4j.queryrender
Methods in org.eclipse.rdf4j.queryrender that return Value Modifier and Type Method Description private Value
BaseTupleExprRenderer. asValue(ValueExpr theValue)
Methods in org.eclipse.rdf4j.queryrender with parameters of type Value Modifier and Type Method Description static java.lang.String
RenderUtils. toSPARQL(Value theValue)
Return the SPARQL query string rendering of theValue
static java.lang.StringBuilder
RenderUtils. toSPARQL(Value value, java.lang.StringBuilder builder)
Append the SPARQL query string rendering of theValue
to the suppliedStringBuilder
. -
Uses of Value in org.eclipse.rdf4j.queryrender.sparql.experimental
Methods in org.eclipse.rdf4j.queryrender.sparql.experimental with parameters of type Value Modifier and Type Method Description void
PreprocessedQuerySerializer. meet(Value node)
-
Uses of Value in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository with parameters of type Value Modifier and Type Method Description 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. 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.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. -
Uses of Value in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base with parameters of type Value Modifier and Type Method Description void
AbstractRepositoryConnection. add(Resource subject, IRI predicate, Value object, Resource... contexts)
void
RepositoryConnectionWrapper. add(Resource subject, IRI predicate, Value object, Resource... contexts)
protected abstract void
AbstractRepositoryConnection. addWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
protected void
RepositoryConnectionWrapper. addWithoutCommit(Resource subject, IRI predicate, Value object, 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
RepositoryConnectionWrapper. hasStatement(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
void
AbstractRepositoryConnection. remove(Resource subject, IRI predicate, Value object, Resource... contexts)
void
RepositoryConnectionWrapper. remove(Resource subject, IRI predicate, Value object, Resource... contexts)
protected abstract void
AbstractRepositoryConnection. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
protected void
RepositoryConnectionWrapper. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
-
Uses of Value in org.eclipse.rdf4j.repository.contextaware
Methods in org.eclipse.rdf4j.repository.contextaware with parameters of type Value Modifier and Type Method Description void
ContextAwareConnection. add(Resource subject, IRI predicate, Value object, 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.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.protected void
ContextAwareConnection. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
-
Uses of Value in org.eclipse.rdf4j.repository.dataset
Methods in org.eclipse.rdf4j.repository.dataset with parameters of type Value Modifier and Type Method Description void
DatasetQuery. setBinding(java.lang.String name, Value value)
-
Uses of Value in org.eclipse.rdf4j.repository.evaluation
Methods in org.eclipse.rdf4j.repository.evaluation with parameters of type Value Modifier and Type Method Description CloseableIteration<? extends Statement,QueryEvaluationException>
RepositoryTripleSource. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
-
Uses of Value in org.eclipse.rdf4j.repository.event
Methods in org.eclipse.rdf4j.repository.event with parameters of type Value 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. 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 Value in org.eclipse.rdf4j.repository.event.base
Methods in org.eclipse.rdf4j.repository.event.base with parameters of type Value 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)
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 Value in org.eclipse.rdf4j.repository.event.util
Methods in org.eclipse.rdf4j.repository.event.util with parameters of type Value Modifier and Type Method Description void
DebugRepositoryConnectionListener. add(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
void
DebugRepositoryConnectionListener. remove(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts)
-
Uses of Value in org.eclipse.rdf4j.repository.filters
Methods in org.eclipse.rdf4j.repository.filters with parameters of type Value 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 Value in org.eclipse.rdf4j.repository.http
Methods in org.eclipse.rdf4j.repository.http with parameters of type Value Modifier and Type Method Description void
HTTPRepositoryConnection. add(Resource subject, IRI predicate, Value object, Resource... contexts)
protected void
HTTPRepositoryConnection. addWithoutCommit(Resource subject, IRI predicate, Value object, 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)
-
Uses of Value in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail with parameters of type Value Modifier and Type Method Description protected void
SailRepositoryConnection. addWithoutCommit(Resource subject, IRI predicate, Value object, 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)
-
Uses of Value in org.eclipse.rdf4j.repository.sail.helpers
Methods in org.eclipse.rdf4j.repository.sail.helpers that return Value Modifier and Type Method Description private Value
SailUpdateExecutor. getValueForVar(Var var, BindingSet bindings)
Methods in org.eclipse.rdf4j.repository.sail.helpers with parameters of type Value 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)
-
Uses of Value in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql with parameters of type Value Modifier and Type Method Description protected void
SPARQLConnection. addWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
private void
SPARQLConnection. createBGP(java.lang.StringBuilder qb, Resource subject, IRI predicate, Value object)
private java.lang.String
SPARQLConnection. createDeletePatternCommand(Resource subject, IRI predicate, Value object, 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)
protected void
SPARQLConnection. removeWithoutCommit(Resource subject, IRI predicate, Value object, Resource... contexts)
private void
SPARQLConnection. setBindings(Query query, Resource subj, IRI pred, Value obj, 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 Value in org.eclipse.rdf4j.repository.sparql.query
Fields in org.eclipse.rdf4j.repository.sparql.query with type parameters of type Value Modifier and Type Field Description private java.util.Map<java.lang.String,Value>
SPARQLQueryBindingSet. bindings
Methods in org.eclipse.rdf4j.repository.sparql.query that return Value Modifier and Type Method Description Value
SPARQLQueryBindingSet. getValue(java.lang.String bindingName)
Methods in org.eclipse.rdf4j.repository.sparql.query with parameters of type Value Modifier and Type Method Description void
SPARQLQueryBindingSet. addBinding(java.lang.String name, Value value)
Adds a new binding to the binding set.static java.lang.StringBuilder
QueryStringUtil. appendValueAsString(java.lang.StringBuilder sb, Value value)
Converts a value to its SPARQL string representation and appends it to a StringBuilder.private java.lang.String
SPARQLOperation. getReplacement(Value value)
Deprecated.void
SPARQLOperation. setBinding(java.lang.String name, Value value)
Deprecated.void
SPARQLQueryBindingSet. setBinding(java.lang.String name, Value value)
static java.lang.String
QueryStringUtil. valueToString(Value value)
Converts a value to its SPARQL string representation. -
Uses of Value in org.eclipse.rdf4j.repository.util
Methods in org.eclipse.rdf4j.repository.util with parameters of type Value 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 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 Value in org.eclipse.rdf4j.rio.binary
Fields in org.eclipse.rdf4j.rio.binary declared as Value Modifier and Type Field Description private Value[]
BinaryRDFParser. declaredValues
Fields in org.eclipse.rdf4j.rio.binary with type parameters of type Value Modifier and Type Field Description private java.util.Map<Value,BinaryRDFWriter.ValueMeta>
BinaryRDFWriter. valueMeta
Methods in org.eclipse.rdf4j.rio.binary that return Value Modifier and Type Method Description private Value
BinaryRDFParser. readValue()
private Value
BinaryRDFParser. readValueRef()
Methods in org.eclipse.rdf4j.rio.binary with parameters of type Value Modifier and Type Method Description private void
BinaryRDFWriter. assignId(Value v, BinaryRDFWriter.ValueMeta meta)
private void
BinaryRDFWriter. incValueFreq(Value v)
private void
BinaryRDFWriter. writeValue(Value value)
private void
BinaryRDFWriter. writeValueOrId(Value value)
-
Uses of Value in org.eclipse.rdf4j.rio.hdt
Methods in org.eclipse.rdf4j.rio.hdt that return Value Modifier and Type Method Description private Value
HDTParser. createObject(byte[] b)
Create object (typed) literal, IRI or blank node -
Uses of Value in org.eclipse.rdf4j.rio.helpers
Methods in org.eclipse.rdf4j.rio.helpers with type parameters of type Value Modifier and Type Method Description static <T extends Value>
TRDFStarUtil. fromRDFEncodedValue(T encodedValue)
Converts the supplied value from an RDF-compatible representation to an RDF-star value.static <T extends Value>
TRDFStarUtil. fromRDFEncodedValue(T encodedValue, ValueFactory valueFactory)
Converts the supplied value from an RDF-compatible representation to an RDF-star value.static <T extends Value>
TRDFStarUtil. toRDFEncodedValue(T value)
Converts the supplied value from RDF-star to an RDF-compatible representation.Methods in org.eclipse.rdf4j.rio.helpers that return Value Modifier and Type Method Description Value
RDFStarEncodingStatement. getObject()
static Value
NTriplesUtil. parseValue(java.lang.String nTriplesValue, ValueFactory valueFactory)
Parses an N-Triples value, creates an object for it using the supplied ValueFactory and returns this object.Methods in org.eclipse.rdf4j.rio.helpers with parameters of type Value Modifier and Type Method Description static void
NTriplesUtil. append(Value value, java.lang.Appendable appendable)
Appends the N-Triples representation of the givenValue
to the givenAppendable
.static void
NTriplesUtil. append(Value value, java.lang.Appendable appendable, boolean xsdStringToPlainLiteral, boolean escapeUnicode)
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 boolean
RDFStarUtil. isEncodedTriple(Value value)
Checks if the suppliedValue
represents an RDF-star triple encoded as an IRI.static java.lang.String
NTriplesUtil. toNTriplesString(Value value)
Creates an N-Triples string for the supplied value.static java.lang.String
NTriplesUtil. toNTriplesString(Value value, boolean xsdStringToPlainLiteral)
Creates an N-Triples string for the supplied value.If the supplied value is aLiteral
, it optionally ignores the xsd:string datatype, since this datatype is implicit in RDF-1.1. -
Uses of Value in org.eclipse.rdf4j.rio.ntriples
Fields in org.eclipse.rdf4j.rio.ntriples declared as Value Modifier and Type Field Description protected Value
NTriplesParser. object
Methods in org.eclipse.rdf4j.rio.ntriples with parameters of type Value Modifier and Type Method Description protected void
NTriplesWriter. writeValue(Value value)
Writes the N-Triples representation of the givenValue
. -
Uses of Value in org.eclipse.rdf4j.rio.rdfjson
Methods in org.eclipse.rdf4j.rio.rdfjson with parameters of type Value 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 Value in org.eclipse.rdf4j.rio.rdfxml
Methods in org.eclipse.rdf4j.rio.rdfxml with parameters of type Value Modifier and Type Method Description private void
RDFXMLParser. handleReification(Value value)
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. -
Uses of Value in org.eclipse.rdf4j.rio.rdfxml.util
Fields in org.eclipse.rdf4j.rio.rdfxml.util declared as Value Modifier and Type Field Description private Value
RDFXMLPrettyWriter.Node. value
Methods in org.eclipse.rdf4j.rio.rdfxml.util that return Value Modifier and Type Method Description Value
RDFXMLPrettyWriter.Node. getValue()
Methods in org.eclipse.rdf4j.rio.rdfxml.util with parameters of type Value Modifier and Type Method Description private void
RDFXMLPrettyWriter. writeAbbreviatedPredicate(IRI pred, Value obj)
Write out an empty property element.Constructors in org.eclipse.rdf4j.rio.rdfxml.util with parameters of type Value Constructor Description Node(Value value)
Creates a new Node for the supplied Value. -
Uses of Value in org.eclipse.rdf4j.rio.trig
Methods in org.eclipse.rdf4j.rio.trig with parameters of type Value Modifier and Type Method Description protected void
TriGParser. reportStatement(Resource subj, IRI pred, Value obj)
protected void
TriGWriter. writeStatement(Resource subj, IRI pred, Value obj, Resource context, boolean canShortenSubject, boolean canShortenObject)
-
Uses of Value in org.eclipse.rdf4j.rio.trigstar
Methods in org.eclipse.rdf4j.rio.trigstar that return Value Modifier and Type Method Description protected Value
TriGStarParser. parseValue()
-
Uses of Value in org.eclipse.rdf4j.rio.trix
Fields in org.eclipse.rdf4j.rio.trix with type parameters of type Value Modifier and Type Field Description private java.util.List<Value>
TriXParser.TriXSAXHandler. valueList
Methods in org.eclipse.rdf4j.rio.trix with parameters of type Value Modifier and Type Method Description private void
TriXWriter. writeValue(Value value)
Writes out the XML-representation for the supplied value. -
Uses of Value in org.eclipse.rdf4j.rio.turtle
Fields in org.eclipse.rdf4j.rio.turtle declared as Value Modifier and Type Field Description protected Value
TurtleParser. object
Methods in org.eclipse.rdf4j.rio.turtle that return Value Modifier and Type Method Description protected Value
TurtleParser. parseQNameOrBoolean()
Parses qnames and boolean values, which have equivalent starting characters.protected Value
TurtleParser. parseValue()
Parses an RDF value.Methods in org.eclipse.rdf4j.rio.turtle with parameters of type Value Modifier and Type Method Description private boolean
TurtleWriter. canInlineValue(Model contextData, Value v)
protected void
TurtleParser. reportStatement(Resource subj, IRI pred, Value obj)
protected void
TurtleWriter. writeStatement(Resource subj, IRI pred, Value obj, Resource context, boolean canShortenSubjectBNode, boolean canShortenObjectBNode)
protected void
TurtleWriter. writeValue(Value val)
Deprecated.UseTurtleWriter.writeValue(Value, boolean)
instead.protected void
TurtleWriter. writeValue(Value val, boolean canShorten)
-
Uses of Value in org.eclipse.rdf4j.rio.turtlestar
Methods in org.eclipse.rdf4j.rio.turtlestar that return Value Modifier and Type Method Description protected Value
TurtleStarParser. parseValue()
-
Uses of Value in org.eclipse.rdf4j.sail
Methods in org.eclipse.rdf4j.sail with parameters of type Value 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.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. -
Uses of Value in org.eclipse.rdf4j.sail.base
Fields in org.eclipse.rdf4j.sail.base declared as Value Modifier and Type Field Description private Value
Changeset.SimpleStatementPattern. object
Methods in org.eclipse.rdf4j.sail.base that return Value Modifier and Type Method Description Value
Changeset.SimpleStatementPattern. getObject()
Methods in org.eclipse.rdf4j.sail.base with parameters of type Value 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.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)
Constructors in org.eclipse.rdf4j.sail.base with parameters of type Value Constructor Description SimpleStatementPattern(Resource subject, IRI predicate, Value object, Resource context, boolean allContexts)
-
Uses of Value in org.eclipse.rdf4j.sail.evaluation
Methods in org.eclipse.rdf4j.sail.evaluation with parameters of type Value Modifier and Type Method Description CloseableIteration<? extends Statement,QueryEvaluationException>
SailTripleSource. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
-
Uses of Value in org.eclipse.rdf4j.sail.helpers
Fields in org.eclipse.rdf4j.sail.helpers declared as Value Modifier and Type Field Description private Value
AbstractSailConnection.WildStatement. object
The statement's object.Methods in org.eclipse.rdf4j.sail.helpers that return Value Modifier and Type Method Description Value
AbstractSailConnection.WildStatement. getObject()
Methods in org.eclipse.rdf4j.sail.helpers with parameters of type Value 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)
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)
Constructors in org.eclipse.rdf4j.sail.helpers with parameters of type Value 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 Value in org.eclipse.rdf4j.sail.inferencer
Methods in org.eclipse.rdf4j.sail.inferencer with parameters of type Value 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)
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)
-
Uses of Value in org.eclipse.rdf4j.sail.inferencer.fc
Fields in org.eclipse.rdf4j.sail.inferencer.fc with type parameters of type Value Modifier and Type Field Description private java.util.Collection<Value>
CustomGraphQueryInferencer. watchObjects
private java.util.Collection<Value>
CustomGraphQueryInferencer. watchPredicates
private java.util.Collection<Value>
CustomGraphQueryInferencer. watchSubjects
Methods in org.eclipse.rdf4j.sail.inferencer.fc that return types with arguments of type Value Modifier and Type Method Description java.util.Collection<Value>
CustomGraphQueryInferencer. getWatchObjects()
Exposed for test purposes.java.util.Collection<Value>
CustomGraphQueryInferencer. getWatchPredicates()
Exposed for test purposes.java.util.Collection<Value>
CustomGraphQueryInferencer. getWatchSubjects()
Exposed for test purposes.Methods in org.eclipse.rdf4j.sail.inferencer.fc with parameters of type Value 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)
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)
boolean
DedupingInferencerConnection. removeInferredStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
-
Uses of Value in org.eclipse.rdf4j.sail.inferencer.util
Methods in org.eclipse.rdf4j.sail.inferencer.util with parameters of type Value Modifier and Type Method Description protected void
RDFInferencerInserter. addStatement(Resource subj, IRI pred, Value obj, Resource ctxt)
-
Uses of Value in org.eclipse.rdf4j.sail.lucene
Methods in org.eclipse.rdf4j.sail.lucene that return Value Modifier and Type Method Description Value
LuceneSailBuffer.ContextAwareStatementImpl. getObject()
(package private) static Value
DistanceQuerySpec. getValue(ValueExpr v)
private static Value
GeoRelationQuerySpecBuilder. getValue(ValueExpr v)
Methods in org.eclipse.rdf4j.sail.lucene with parameters of type Value Modifier and Type Method Description void
LuceneSailConnection. addStatement(Resource subj, IRI pred, Value obj, Resource... contexts)
void
LuceneSailConnection. removeStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
-
Uses of Value in org.eclipse.rdf4j.sail.memory
Methods in org.eclipse.rdf4j.sail.memory that return Value Modifier and Type Method Description protected Value
MemEvaluationStatistics.MemCardinalityCalculator. getConstantValue(Var var)
private Value
FileIO. readValue(java.io.DataInputStream dataIn)
Methods in org.eclipse.rdf4j.sail.memory with parameters of type Value 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)
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)
private int
MemEvaluationStatistics.MemCardinalityCalculator. minStatementCount(Value subj, Value pred, Value obj, Value context)
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)
private void
FileIO. writeValue(Value value, java.io.DataOutputStream dataOut)
-
Uses of Value in org.eclipse.rdf4j.sail.memory.model
Subinterfaces of Value in org.eclipse.rdf4j.sail.memory.model Modifier and Type Interface Description interface
MemValue
A MemoryStore-specific extension of the Value interface, giving it node properties.Classes in org.eclipse.rdf4j.sail.memory.model that implement Value Modifier and Type Class Description class
BooleanMemLiteral
An extension of MemLiteral that stores a boolean value to avoid parsing.class
CalendarMemLiteral
An extension of MemLiteral that stores a Calendar value to avoid parsing.class
DecimalMemLiteral
An extension of MemLiteral that stores a decimal value to avoid parsing.class
IntegerMemLiteral
An extension of MemLiteral that stores an integer value to avoid parsing.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
MemLiteral
A MemoryStore-specific extension of Literal giving it node properties.class
MemResource
A MemoryStore-specific extension of Resource giving it subject statements.class
MemTriple
A MemoryStore-specific implementation ofTriple
.class
NumericMemLiteral
An extension of MemLiteral that stores a numeric value to avoid parsing.Methods in org.eclipse.rdf4j.sail.memory.model with parameters of type Value Modifier and Type Method Description Triple
MemValueFactory. createTriple(Resource subject, IRI predicate, Value object)
MemValue
MemValueFactory. getMemValue(Value value)
Returns a previously created MemValue that is equal to the supplied value, or null if the supplied value is a new value or is equal to null.MemValue
MemValueFactory. getOrCreateMemValue(Value value)
Gets or creates a MemValue for the supplied Value. -
Uses of Value in org.eclipse.rdf4j.sail.model
Methods in org.eclipse.rdf4j.sail.model with parameters of type Value Modifier and Type Method Description boolean
SailModel. add(Resource subj, IRI pred, Value obj, 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 Value in org.eclipse.rdf4j.sail.shacl
Methods in org.eclipse.rdf4j.sail.shacl with parameters of type Value 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)
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)
-
Uses of Value in org.eclipse.rdf4j.sail.shacl.ast
Classes in org.eclipse.rdf4j.sail.shacl.ast with type parameters of type Value Modifier and Type Class Description static class
StatementMatcher.Variable<T extends Value>
Fields in org.eclipse.rdf4j.sail.shacl.ast declared as Value Modifier and Type Field Description private Value
ShaclSparqlConstraintFailureException. focusNode
private Value
Severity. iri
(package private) T
StatementMatcher.Variable. value
Fields in org.eclipse.rdf4j.sail.shacl.ast with type parameters of type Value Modifier and Type Field Description private java.util.List<Value>
ShaclProperties. hasValue
private static StatementMatcher.Variable<Value>
StatementMatcher. NULL_OBJECT
private StatementMatcher.Variable<? extends Value>
StatementMatcher. object
private java.util.TreeSet<Value>
ShaclProperties. targetNode
static StatementMatcher.Variable<Value>
StatementMatcher.Variable. THIS
static StatementMatcher.Variable<Value>
StatementMatcher.Variable. VALUE
private java.util.List<StatementMatcher.Variable<Value>>
ValidationQuery. variables
Methods in org.eclipse.rdf4j.sail.shacl.ast with type parameters of type Value Modifier and Type Method Description static <T extends Value>
java.util.List<T>ShaclAstLists. toList(ShapeSource shapeSource, Resource head, java.lang.Class<T> type)
Methods in org.eclipse.rdf4j.sail.shacl.ast that return Value Modifier and Type Method Description Value
XmlDatatypeUtilFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
XmlDatatypeUtilFunction. evaluate(TripleSource tripleSource, Value... args)
Value
ShaclSparqlConstraintFailureException. getFocusNode()
Value
Severity. getIri()
Value
StatementMatcher. getObjectValue()
Methods in org.eclipse.rdf4j.sail.shacl.ast that return types with arguments of type Value Modifier and Type Method Description StatementMatcher.Variable<Value>
StatementMatcher.StableRandomVariableProvider. current()
java.util.List<Value>
ShaclProperties. getHasValue()
java.util.TreeSet<Value>
ShaclProperties. getTargetNode()
StatementMatcher.Variable<Value>
StatementMatcher.StableRandomVariableProvider. next()
private static java.util.List<Value>
ShaclAstLists. toList(ShapeSource shapeSource, Resource head)
Methods in org.eclipse.rdf4j.sail.shacl.ast with parameters of type Value Modifier and Type Method Description Value
XmlDatatypeUtilFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
XmlDatatypeUtilFunction. evaluate(TripleSource tripleSource, Value... args)
private static java.lang.String
StatementMatcher. formatForToString(java.lang.String field, java.lang.String name, Value value)
private static java.lang.String
ShaclProperties. getClassName(Value object)
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)
private static java.lang.String
ShaclSparqlConstraintFailureException. valueToString(Value value)
Constructors in org.eclipse.rdf4j.sail.shacl.ast with parameters of type Value Constructor Description Severity(Value iri)
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 Value Constructor Description ValidationQuery(java.util.Collection<Namespace> namespaces, java.lang.String query, java.util.List<StatementMatcher.Variable<Value>> targets, StatementMatcher.Variable<Value> value, ConstraintComponent.Scope scope, ConstraintComponent constraintComponent, Severity severity, Shape shape)
ValidationQuery(java.util.Collection<Namespace> namespaces, java.lang.String query, java.util.List<StatementMatcher.Variable<Value>> targets, StatementMatcher.Variable<Value> value, ConstraintComponent.Scope scope, ConstraintComponent constraintComponent, Severity severity, Shape shape)
ValidationQuery(java.util.Set<Namespace> namespaces, java.lang.String query, ConstraintComponent.Scope scope, java.util.List<StatementMatcher.Variable<Value>> variables, int targetIndex, int valueIndex)
-
Uses of Value in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents
Fields in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents declared as Value Modifier and Type Field Description private Value
HasValueConstraintComponent. hasValue
Fields in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type parameters of type Value Modifier and Type Field Description (package private) java.util.Set<Value>
DashHasValueInConstraintComponent. hasValueIn
private java.util.Set<Value>
InConstraintComponent. in
Methods in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with parameters of type Value Modifier and Type Method Description java.lang.String
AbstractConstraintComponent. stringRepresentationOfValue(Value value)
Method parameters in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type arguments of type Value Modifier and Type Method Description SparqlFragment
AbstractConstraintComponent. buildSparqlValidNodes_rsx_targetShape(StatementMatcher.Variable<Value> subject, StatementMatcher.Variable<Value> object, RdfsSubClassOfReasoner rdfsSubClassOfReasoner, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
SparqlFragment
AndConstraintComponent. buildSparqlValidNodes_rsx_targetShape(StatementMatcher.Variable<Value> subject, StatementMatcher.Variable<Value> object, RdfsSubClassOfReasoner rdfsSubClassOfReasoner, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
SparqlFragment
ConstraintComponent. buildSparqlValidNodes_rsx_targetShape(StatementMatcher.Variable<Value> subject, StatementMatcher.Variable<Value> object, RdfsSubClassOfReasoner rdfsSubClassOfReasoner, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
SparqlFragment
DashHasValueInConstraintComponent. buildSparqlValidNodes_rsx_targetShape(StatementMatcher.Variable<Value> subject, StatementMatcher.Variable<Value> object, RdfsSubClassOfReasoner rdfsSubClassOfReasoner, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
SparqlFragment
HasValueConstraintComponent. buildSparqlValidNodes_rsx_targetShape(StatementMatcher.Variable<Value> subject, StatementMatcher.Variable<Value> object, RdfsSubClassOfReasoner rdfsSubClassOfReasoner, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
SparqlFragment
OrConstraintComponent. buildSparqlValidNodes_rsx_targetShape(StatementMatcher.Variable<Value> subject, StatementMatcher.Variable<Value> object, RdfsSubClassOfReasoner rdfsSubClassOfReasoner, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
private java.lang.String
ClassConstraintComponent. getFilter(ConnectionsGroup connectionsGroup, StatementMatcher.Variable<Value> target)
private java.lang.String
SimpleAbstractConstraintComponent. getSparqlFilter(boolean negatePlan, StatementMatcher.Variable<Value> variable, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
(package private) java.lang.String
DatatypeConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
InConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
LanguageInConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
MaxExclusiveConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
MaxInclusiveConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
MaxLengthConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
MinExclusiveConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
MinInclusiveConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
MinLengthConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
NodeKindConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) java.lang.String
PatternConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
(package private) abstract java.lang.String
SimpleAbstractConstraintComponent. getSparqlFilterExpression(StatementMatcher.Variable<Value> variable, boolean negated)
Simple constraints need only implement this method to support SPARQL based validation.Constructors in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with parameters of type Value Constructor Description HasValueConstraintComponent(Value hasValue)
-
Uses of Value in org.eclipse.rdf4j.sail.shacl.ast.planNodes
Fields in org.eclipse.rdf4j.sail.shacl.ast.planNodes declared as Value Modifier and Type Field Description private Value[]
ValidationTuple. chain
private Value
UnorderedSelect. object
private Value
SingletonBindingSet. value
Fields in org.eclipse.rdf4j.sail.shacl.ast.planNodes with type parameters of type Value Modifier and Type Field Description private java.util.function.Function<ValidationTuple,Value>
ExternalFilterByQuery. filterOn
private java.util.Set<Value>
SetFilterNode. targetNodeList
private java.util.SortedSet<Value>
ValuesBackedNode. values
private java.util.Set<Value>
ValueInFilter. valueSet
private java.util.List<StatementMatcher.Variable<Value>>
BindSelect. vars
Methods in org.eclipse.rdf4j.sail.shacl.ast.planNodes that return Value Modifier and Type Method Description Value
ValidationTuple. getActiveTarget()
Value
SimpleBindingSet. getValue(java.lang.String bindingName)
Value
SingletonBindingSet. getValue(java.lang.String bindingName)
Value
ValidationTuple. getValue()
Methods in org.eclipse.rdf4j.sail.shacl.ast.planNodes that return types with arguments of type Value Modifier and Type Method Description java.util.List<Value>
ValidationTuple. getTargetChain(boolean includePropertyShapeValues)
This is only the target part.Methods in org.eclipse.rdf4j.sail.shacl.ast.planNodes with parameters of type Value Modifier and Type Method Description private boolean
FilterByPredicateObject. matches(Value subject, IRI filterOnPredicate, Resource[] filterOnObject)
static java.lang.String
Formatter. prefix(Value in)
ValidationTuple
ValidationTuple. setValue(Value value)
Constructors in org.eclipse.rdf4j.sail.shacl.ast.planNodes with parameters of type Value Constructor Description SingletonBindingSet(java.lang.String bindingName, Value value)
UnorderedSelect(SailConnection connection, Resource subject, IRI predicate, Value object, Resource[] dataGraph, java.util.function.BiFunction<Statement,Resource[],ValidationTuple> mapper)
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)
Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast.planNodes with type arguments of type Value Constructor Description 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)
ExternalFilterByQuery(SailConnection connection, Resource[] dataGraph, PlanNode parent, SparqlFragment queryFragment, StatementMatcher.Variable queryVariable, java.util.function.Function<ValidationTuple,Value> filterOn)
SetFilterNode(java.util.Set<Value> targetNodeList, PlanNode parent, int index, boolean returnValid)
ValidationTuple(java.util.List<Value> chain, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts)
ValueInFilter(PlanNode parent, java.util.Set<Value> valueSet)
ValuesBackedNode(java.util.SortedSet<Value> values, ConstraintComponent.Scope scope, Resource[] dataGraph)
-
Uses of Value in org.eclipse.rdf4j.sail.shacl.ast.targets
Fields in org.eclipse.rdf4j.sail.shacl.ast.targets with type parameters of type Value Modifier and Type Field Description private java.util.TreeSet<Value>
TargetNode. targetNodes
private StatementMatcher.Variable<Value>
EffectiveTarget.EffectiveTargetFragment. var
Methods in org.eclipse.rdf4j.sail.shacl.ast.targets that return types with arguments of type Value Modifier and Type Method Description java.util.List<StatementMatcher.Variable<Value>>
EffectiveTarget. getAllTargetVariables()
StatementMatcher.Variable<Value>
EffectiveTarget. getTargetVar()
private java.util.List<StatementMatcher.Variable<Value>>
EffectiveTarget. getVars()
Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast.targets with type arguments of type Value Constructor Description EffectiveTargetFragment(StatementMatcher.Variable<Value> var, Targetable target, EffectiveTarget.EffectiveTargetFragment prev, RdfsSubClassOfReasoner rdfsSubClassOfReasoner, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider)
TargetNode(java.util.TreeSet<Value> targetNodes, Resource[] sourceContexts)
-
Uses of Value in org.eclipse.rdf4j.sail.shacl.results
Fields in org.eclipse.rdf4j.sail.shacl.results declared as Value Modifier and Type Field Description private Value
ValidationResult. focusNode
Deprecated.private Value
ValidationResult. pathIri
Deprecated.Fields in org.eclipse.rdf4j.sail.shacl.results with type parameters of type Value Modifier and Type Field Description private java.util.Optional<Value>
ValidationResult. value
Deprecated.Methods in org.eclipse.rdf4j.sail.shacl.results that return Value Modifier and Type Method Description private Value
ValidationResult. getFocusNode()
Deprecated.Methods in org.eclipse.rdf4j.sail.shacl.results that return types with arguments of type Value Modifier and Type Method Description protected java.util.Optional<Value>
ValidationResult. getValue()
Deprecated.Methods in org.eclipse.rdf4j.sail.shacl.results with parameters of type Value Modifier and Type Method Description void
ValidationResult. setPathIri(Value path)
Deprecated.Constructors in org.eclipse.rdf4j.sail.shacl.results with parameters of type Value Constructor Description ValidationResult(Value focusNode, Value value, Shape shape, ConstraintComponent sourceConstraint, Severity severity, ConstraintComponent.Scope scope, Resource[] dataGraphs, Resource[] shapesGraphs)
Deprecated. -
Uses of Value in org.eclipse.rdf4j.sail.shacl.wrapper.data
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.data with parameters of type Value Modifier and Type Method Description 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)
-
Uses of Value in org.eclipse.rdf4j.sail.shacl.wrapper.shape
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.shape that return Value Modifier and Type Method Description (package private) static Value
ShapeSourceHelper. getFirst(RepositoryConnection connection, Resource subject, Resource[] context)
(package private) static Value
ShapeSourceHelper. getFirst(SailConnection connection, Resource subject, Resource[] context)
private static Value
ShapeSourceHelper. getObject(CloseableIteration<? extends Statement,SailException> iteration)
private static Value
ShapeSourceHelper. getObject(RepositoryResult<Statement> iteration)
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)
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.shape that return types with arguments of type Value Modifier and Type Method Description 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)
-
Uses of Value in org.eclipse.rdf4j.sparqlbuilder.graphpattern
Methods in org.eclipse.rdf4j.sparqlbuilder.graphpattern with parameters of type Value Modifier and Type Method Description default TriplePattern
TriplePattern. andHas(java.util.function.Consumer<EmptyPropertyPathBuilder> propertyPathConfigurer, Value... objects)
Wrapper forTriplePattern.andHas(Consumer, RdfObject...)
converting theValue
objects
toRdfObject
s.default TriplePattern
TriplePattern. andHas(RdfPredicate predicate, Value... objects)
Convenience version ofTriplePattern.andHas(RdfPredicate, RdfObject...)
that takesValue
s and converts them to StringLiteralsstatic TriplePattern
GraphPatterns. tp(Resource subject, IRI predicate, Value... objects)
static TriplePattern
GraphPatterns. tp(Resource subject, RdfPredicate predicate, Value... objects)
static TriplePattern
GraphPatterns. tp(RdfSubject subject, IRI predicate, Value... objects)
static TriplePattern
GraphPatterns. tp(RdfSubject subject, RdfPredicate predicate, Value... objects)
-
Uses of Value in org.eclipse.rdf4j.sparqlbuilder.rdf
Methods in org.eclipse.rdf4j.sparqlbuilder.rdf with parameters of type Value Modifier and Type Method Description default TriplePattern
RdfSubject. has(java.util.function.Consumer<EmptyPropertyPathBuilder> propertyPathConfigurer, Value... objects)
Wrapper forRdfSubject.has(Consumer, RdfObject...)
that converts the specifiedValue
objects
toRdfObject
s.default TriplePattern
RdfSubject. has(IRI predicate, Value... values)
Create a triple pattern from this subject and the given predicate and objectdefault TriplePattern
RdfSubject. has(RdfPredicate predicate, Value... values)
Create a triple pattern from this subject and the given predicate and objectstatic RdfObject
Rdf. object(Value value)
static RdfObject[]
Rdf. objects(Value... values)
-
Uses of Value in org.eclipse.rdf4j.spin
Fields in org.eclipse.rdf4j.spin declared as Value Modifier and Type Field Description private Value
Argument. defaultValue
Methods in org.eclipse.rdf4j.spin that return Value Modifier and Type Method Description Value
Argument. getDefaultValue()
private Value
SpinRenderer.SpinVisitor. toValue(Compare.CompareOp op)
private Value
SpinRenderer.SpinVisitor. toValue(FunctionCall node)
private Value
SpinRenderer.SpinVisitor. toValue(MathExpr.MathOp op)
Methods in org.eclipse.rdf4j.spin with parameters of type Value Modifier and Type Method Description private ProjectionElem
SpinParser.SpinVisitor. createProjectionElem(Value v, java.lang.String projName, java.util.Map<java.lang.String,ProjectionElem> previousProjElems)
private Var
SpinParser.SpinVisitor. getVar(Value v)
(package private) void
SpinRenderer.SpinVisitor. listEntry(Value entry)
ValueExpr
SpinParser. parseExpression(Value expr, TripleSource store)
private ValueExpr
SpinParser.SpinVisitor. visitExpression(Value v)
Method parameters in org.eclipse.rdf4j.spin with type arguments of type Value Modifier and Type Method Description ParsedOperation
Template. call(java.util.Map<IRI,Value> argValues)
Constructors in org.eclipse.rdf4j.spin with parameters of type Value Constructor Description Argument(IRI IRI, IRI valueType, boolean optional, Value defaultValue)
-
Uses of Value in org.eclipse.rdf4j.spin.function
Methods in org.eclipse.rdf4j.spin.function that return Value Modifier and Type Method Description protected Value
Add. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
And. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
AskFunction. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Divide. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
EqualTo. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
EvalFunction. evaluate(ValueFactory valueFactory, Value... args)
protected Value
GreaterThan. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
GreaterThanOrEqualTo. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
LessThan. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
LessThanOrEqualTo. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
Localname. evaluate(ValueFactory valueFactory, Value arg)
protected Value
Multiply. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
Not. evaluate(ValueFactory valueFactory, Value arg)
protected Value
NotEqualTo. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
ObjectFunction. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Or. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
SpinFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
SpinxFunction. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Subtract. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Methods in org.eclipse.rdf4j.spin.function that return types with arguments of type Value Modifier and Type Method Description CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
ConstructTupleFunction. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
SelectTupleFunction. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
SpinTupleFunction. evaluate(ValueFactory valueFactory, Value... args)
java.util.List<Value>
ConstructTupleFunction.GraphQueryResultIteration. next()
java.util.List<Value>
SelectTupleFunction.TupleQueryResultIteration. next()
Methods in org.eclipse.rdf4j.spin.function with parameters of type Value Modifier and Type Method Description protected static void
EvalFunction. addArguments(Query query, Value... args)
protected static void
AbstractSpinFunction. addBindings(Query query, Value... args)
private static void
SpinFunction. addBindings(Query query, java.util.List<Argument> arguments, Value... args)
private static void
SpinTupleFunction. addBindings(Query query, java.util.List<Argument> arguments, Value... args)
protected Value
Add. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
And. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
AskFunction. evaluate(ValueFactory valueFactory, Value... args)
Literal
Concat. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
ConstructTupleFunction. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Divide. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
EqualTo. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
EvalFunction. evaluate(ValueFactory valueFactory, Value... args)
protected Value
GreaterThan. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
GreaterThanOrEqualTo. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
LessThan. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
LessThanOrEqualTo. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
Localname. evaluate(ValueFactory valueFactory, Value arg)
protected Value
Multiply. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
Not. evaluate(ValueFactory valueFactory, Value arg)
protected Value
NotEqualTo. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
ObjectFunction. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Or. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
SelectTupleFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
SpinFunction. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
SpinTupleFunction. evaluate(ValueFactory valueFactory, Value... args)
Value
SpinxFunction. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Subtract. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
-
Uses of Value in org.eclipse.rdf4j.spin.function.apf
Methods in org.eclipse.rdf4j.spin.function.apf that return types with arguments of type Value Modifier and Type Method Description CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
ConcatTupleFunction. evaluate(ValueFactory valueFactory, Value... args)
Methods in org.eclipse.rdf4j.spin.function.apf with parameters of type Value Modifier and Type Method Description CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
ConcatTupleFunction. evaluate(ValueFactory valueFactory, Value... args)
-
Uses of Value in org.eclipse.rdf4j.spin.function.list
Methods in org.eclipse.rdf4j.spin.function.list that return types with arguments of type Value Modifier and Type Method Description CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
Index. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
Length. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
Member. evaluate(ValueFactory valueFactory, Value... args)
Methods in org.eclipse.rdf4j.spin.function.list with parameters of type Value Modifier and Type Method Description CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
Index. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
Length. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
Member. evaluate(ValueFactory valueFactory, Value... args)
-
Uses of Value in org.eclipse.rdf4j.spin.function.spif
Methods in org.eclipse.rdf4j.spin.function.spif that return Value Modifier and Type Method Description Value
AbstractStringReplacer. evaluate(ValueFactory valueFactory, Value... args)
Value
BuildString. evaluate(ValueFactory valueFactory, Value... args)
Value
BuildURI. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Cast. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
ConvertSpinRDFToString. evaluate(ValueFactory valueFactory, Value... args)
Value
CurrentTimeMillis. evaluate(ValueFactory valueFactory, Value... args)
protected Value
DateFormat. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
DecimalFormat. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
DecodeURL. evaluate(ValueFactory valueFactory, Value... args)
Value
EncodeURL. evaluate(ValueFactory valueFactory, Value... args)
Value
GenerateUUID. evaluate(ValueFactory valueFactory, Value... args)
Value
HasAllObjects. evaluate(ValueFactory valueFactory, Value... args)
Value
IndexOf. evaluate(ValueFactory valueFactory, Value... args)
Value
Invoke. evaluate(ValueFactory valueFactory, Value... args)
protected Value
IsValidURI. evaluate(ValueFactory valueFactory, Value arg)
Value
LastIndexOf. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Mod. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
Name. evaluate(ValueFactory valueFactory, Value... args)
protected Value
ParseDate. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
Random. evaluate(ValueFactory valueFactory, Value... args)
Value
ReplaceAll. evaluate(ValueFactory valueFactory, Value... args)
protected Value
TimeMillis. evaluate(ValueFactory valueFactory, Value arg)
protected Value
Trim. evaluate(ValueFactory valueFactory, Value arg)
protected Value
UnCamelCase. evaluate(ValueFactory valueFactory, Value arg)
Methods in org.eclipse.rdf4j.spin.function.spif that return types with arguments of type Value Modifier and Type Method Description CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
For. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
ForEach. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
Split. evaluate(ValueFactory valueFactory, Value... args)
Methods in org.eclipse.rdf4j.spin.function.spif with parameters of type Value Modifier and Type Method Description Value
AbstractStringReplacer. evaluate(ValueFactory valueFactory, Value... args)
Value
BuildString. evaluate(ValueFactory valueFactory, Value... args)
Value
BuildURI. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Cast. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
ConvertSpinRDFToString. evaluate(ValueFactory valueFactory, Value... args)
Value
CurrentTimeMillis. evaluate(ValueFactory valueFactory, Value... args)
protected Value
DateFormat. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
protected Value
DecimalFormat. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
DecodeURL. evaluate(ValueFactory valueFactory, Value... args)
Value
EncodeURL. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
For. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
ForEach. evaluate(ValueFactory valueFactory, Value... args)
Value
GenerateUUID. evaluate(ValueFactory valueFactory, Value... args)
Value
HasAllObjects. evaluate(ValueFactory valueFactory, Value... args)
Value
IndexOf. evaluate(ValueFactory valueFactory, Value... args)
Value
Invoke. evaluate(ValueFactory valueFactory, Value... args)
protected Value
IsValidURI. evaluate(ValueFactory valueFactory, Value arg)
Value
LastIndexOf. evaluate(ValueFactory valueFactory, Value... args)
protected Value
Mod. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
Name. evaluate(ValueFactory valueFactory, Value... args)
protected Value
ParseDate. evaluate(ValueFactory valueFactory, Value arg1, Value arg2)
Value
Random. evaluate(ValueFactory valueFactory, Value... args)
Value
ReplaceAll. evaluate(ValueFactory valueFactory, Value... args)
CloseableIteration<? extends java.util.List<? extends Value>,QueryEvaluationException>
Split. evaluate(ValueFactory valueFactory, Value... args)
protected Value
TimeMillis. evaluate(ValueFactory valueFactory, Value arg)
protected Value
Trim. evaluate(ValueFactory valueFactory, Value arg)
protected Value
UnCamelCase. evaluate(ValueFactory valueFactory, Value arg)
-