Package org.eclipse.rdf4j.query.impl
Class SimpleBinding
- java.lang.Object
-
- org.eclipse.rdf4j.query.impl.SimpleBinding
-
- All Implemented Interfaces:
Serializable
,Binding
- Direct Known Subclasses:
BindingImpl
public class SimpleBinding extends Object implements Binding
An implementation of theBinding
interface.- Author:
- Jeen Broekstra
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SimpleBinding(String name, Value value)
Creates a binding object with the supplied name and value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Compares a binding object to another object.String
getName()
Gets the name of the binding (e.g.Value
getValue()
Gets the value of the binding.int
hashCode()
The hash code of a binding is defined as the bit-wise XOR of the hash codes of its name and value:String
toString()
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:Binding
Gets the name of the binding (e.g. the variable name).
-
getValue
public Value getValue()
Description copied from interface:Binding
Gets the value of the binding. The returned value is never equal to null, such a "binding" is considered to be unbound.
-
equals
public boolean equals(Object o)
Description copied from interface:Binding
Compares a binding object to another object.
-
hashCode
public int hashCode()
Description copied from interface:Binding
The hash code of a binding is defined as the bit-wise XOR of the hash codes of its name and value:name.hashCode() ˆ value.hashCode()
.
-
-