| java.lang.Object org.mmbase.util.Entry
Entry | final public class Entry implements Map.Entry<K, V>,PublicCloneable,java.io.Serializable(Code) | | Represents a pair of values ('key' and a 'value'). It is a straight-forward implementation of
java.util.Map.Entry , and can be used as a utility for Map implementations.
since: MMBase-1.8 version: $Id: Entry.java,v 1.7 2007/02/24 21:57:50 nklasens Exp $ author: Michiel Meeuwissen |
Entry | public Entry(K k, V v)(Code) | | Parameters: k - The key of this Map.Entry Parameters: v - The value of this Map.Entry |
getValue | public V getValue()(Code) | | |
hashCode | public int hashCode()(Code) | | |
setValue | public V setValue(V v)(Code) | | |
toString | public String toString()(Code) | | A sensible toString, for debugging purposes ('<key>=<value>').
|
|
|