public abstract class ValueMap<K extends Value,T> extends Object
Value
s to other objects.Constructor and Description |
---|
ValueMap() |
Modifier and Type | Method and Description |
---|---|
abstract T |
get(K value)
Gets the object associated with
value or null if there is no such mapping. |
abstract void |
put(K value,
T object)
Associates
object with value . |
abstract void |
remove(K value)
Removes the object associated with
value from the map. |