Interface BindingSet
- All Superinterfaces:
 Iterable<Binding>, Serializable
- All Known Subinterfaces:
 MutableBindingSet
- All Known Implementing Classes:
 AbstractBindingSet, ArrayBindingSet, EmptyBindingSet, FedXPathIteration.ValuePair, ListBindingSet, MapBindingSet, PathIteration.ValuePair, QueryBindingSet, SimpleBindingSet, SingletonBindingSet, SPARQLQueryBindingSet
A BindingSet is a set of named value bindings, which is used a.o. to represent a single query solution. Values are
indexed by name of the binding which typically corresponds to the names of the variables used in the projection of
the orginal query.
- 
Method Summary
Modifier and TypeMethodDescriptionbooleanCompares a BindingSet object to another object.getBinding(String bindingName) Gets the binding with the specified name from this BindingSet.Gets the names of the bindings in this BindingSet.Gets the value of the binding with the specified name from this BindingSet.booleanhasBinding(String bindingName) Checks whether this BindingSet has a binding with the specified name.inthashCode()The hash code of a binding is defined as the bit-wise XOR of the hash codes of its bindings:default booleanisCompatible(BindingSet other) Check whether this BindingSet is compatible with another.default booleanisEmpty()iterator()Creates an iterator over the bindings in this BindingSet.intsize()Returns the number of bindings in this BindingSet.Methods inherited from interface Iterable
forEach, spliterator 
- 
Method Details
- 
iterator
 - 
getBindingNames
 - 
getBinding
 - 
hasBinding
Checks whether this BindingSet has a binding with the specified name.- Parameters:
 bindingName- The name of the binding.- Returns:
 - true if this BindingSet has a binding with the specified name, false otherwise.
 
 - 
getValue
 - 
size
int size()Returns the number of bindings in this BindingSet.- Returns:
 - The number of bindings in this BindingSet.
 
 - 
equals
Compares a BindingSet object to another object.- Overrides:
 equalsin classObject- Parameters:
 o- The object to compare this binding to.- Returns:
 - true if the other object is an instance of 
BindingSetand it contains the same set of bindings (disregarding order), false otherwise. 
 - 
hashCode
int hashCode()The hash code of a binding is defined as the bit-wise XOR of the hash codes of its bindings:int hashCode = 0; for (Binding binding : this) { hashCode ˆ= binding.getName().hashCode() ˆ binding.getValue().hashCode(); }Note: the calculated hash code intentionally does not depend on the order in which the bindings are iterated over.
 - 
isEmpty
default boolean isEmpty() - 
isCompatible
Check whether this BindingSet is compatible with another. Two binding sets are compatible if they have equal values for each variable that is bound in both binding sets. A variable that is unbound in either set is considered compatible.Default implementation mirrors
QueryResults.bindingSetsCompatible(BindingSet, BindingSet).- Parameters:
 other- the other binding set to compare with- Returns:
 - true if compatible
 
 
 -