Method Summary |
|
abstract public Enumeration<V> | elements() Answers an Enumeration on the elements of this Dictionary. |
abstract public V | get(Object key) Answers the value associated with key . |
abstract public boolean | isEmpty() Answers if this Dictionary has no key/value pairs, a size of zero. |
abstract public Enumeration<K> | keys() Answers an Enumeration on the keys of this Dictionary. |
abstract public V | put(K key, V value) Associate key with value in this
Dictionary . |
abstract public V | remove(Object key) Remove the key/value pair with the specified key from this
Dictionary . |
abstract public int | size() Answers the number of key/value pairs in this Dictionary. |