| java.lang.Object com.flexive.war.LookupHashtable
LookupHashtable | public class LookupHashtable implements Map<K, V>,java.io.Serializable(Code) | | This Hashtable finds its entries by comparing the hashtables keys with the given keys original value
or its string representation.
In other words, .get(new Integer(1)) will deliver the same result as .get('1') on a
LookupHashtable<Integer,?>.
author: Gregor Schober (gregor.schober@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at) version: $Rev: 1 $ |
LookupHashtable | public LookupHashtable(int initialCapacity)(Code) | | |
clear | public void clear()(Code) | | |
containsValue | public boolean containsValue(Object value)(Code) | | |
entrySet | public Set<Entry<K, V>> entrySet()(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
put | public V put(K k, V v)(Code) | | |
putAll | public void putAll(Map<? extends K, ? extends V> map)(Code) | | |
|
|