Example usage for Java java.util Dictionary fields, constructors, methods, implement or subclass
The text is from its open source code.
Enumeration | elements() Returns an enumeration of the values in this dictionary. |
boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |
V | get(Object key) Returns the value to which the key is mapped in this dictionary. |
boolean | isEmpty() Tests if this dictionary maps no keys to value. |
Enumeration | keys() Returns an enumeration of the keys in this dictionary. |
V | put(K key, V value) Maps the specified key to the specified value in this dictionary. |
V | remove(Object key) Removes the key (and its corresponding value ) from this dictionary. |
int | size() Returns the number of entries (distinct keys) in this dictionary. |
String | toString() Returns a string representation of the object. |