Methods Summary |
---|
public abstract java.util.Enumeration | elements()Returns an enumeration on the elements of this dictionary.
|
public abstract V | get(java.lang.Object key)Returns the value which is associated with {@code key}.
|
public abstract boolean | isEmpty()Returns true if this dictionary has no key/value pairs.
|
public abstract java.util.Enumeration | keys()Returns an enumeration on the keys of this dictionary.
|
public abstract V | put(K key, V value)Associate {@code key} with {@code value} in this dictionary. If {@code
key} exists in the dictionary before this call, the old value in the
dictionary is replaced by {@code value}.
|
public abstract V | remove(java.lang.Object key)Removes the key/value pair with the specified {@code key} from this
dictionary.
|
public abstract int | size()Returns the number of key/value pairs in this dictionary.
|