| java.lang.Object org.jgap.audit.KeyedValue
KeyedValue | public KeyedValue(Comparable a_key, Number a_value)(Code) | | Creates a new (key, value) tupel.
Parameters: a_key - the key Parameters: a_value - the value, could be null author: Klaus Meffert since: 2.3 |
clone | public Object clone()(Code) | | clone of the current instance author: Klaus Meffert since: 2.3 |
equals | public boolean equals(Object a_object)(Code) | | Tests if this object is equal to another.
Parameters: a_object - the other object true: this object is equal to other one author: Klaus Meffert since: 2.3 |
getKey | public Comparable getKey()(Code) | | key of the tupel author: Klaus Meffert since: 2.3 |
getValue | public synchronized Number getValue()(Code) | | value of the tupel author: Klaus Meffert since: 2.3 |
hashCode | public int hashCode()(Code) | | hash code of the instance author: Klaus Meffert since: 2.3 |
setValue | public synchronized void setValue(Number a_value)(Code) | | Sets the value for the key
Parameters: a_value - the value to set for the key author: Klaus Meffert since: 2.3 |
|
|