public interface Binding
extends java.io.Serializable
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o)
Compares a binding object to another object.
|
java.lang.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:
|
java.lang.String getName()
Value getValue()
boolean equals(java.lang.Object o)
equals in class java.lang.Objecto - The object to compare this binding to.Binding and both their names and values are equal,
false otherwise.int hashCode()
name.hashCode() ˆ value.hashCode().
hashCode in class java.lang.ObjectCopyright © 2001-2014 Aduna. All Rights Reserved.