All Packages Class Hierarchy This Package Previous Next Index
Class org.webmacro.util.DictionaryTool
java.lang.Object
|
+----java.util.Dictionary
|
+----org.webmacro.util.DictionaryTool
- public final class DictionaryTool
- extends Dictionary
A HashTool wraps a java.util.Dictionary and provides additional features
-
DictionaryTool(Dictionary)
- Wrap the supplied dictionary.
-
elements()
- Forward call to Dictionary
-
get(Object)
- Forward call to Dictionary
-
isEmpty()
- Forward call to Dictionary
-
keys()
- Forward call to Dictionary
-
keyString()
- Return a string which concatenates the keys, putting commas
between the keys
-
main(String[])
-
-
put(Object, Object)
- Forward call to Dictionary
-
remove(Object)
- Forward call to Dictionary
-
size()
- Forward call to Dictionary
DictionaryTool
public DictionaryTool(Dictionary dict)
- Wrap the supplied dictionary.
keyString
public final String keyString()
- Return a string which concatenates the keys, putting commas
between the keys
elements
public final Enumeration elements()
- Forward call to Dictionary
- Overrides:
- elements in class Dictionary
isEmpty
public final boolean isEmpty()
- Forward call to Dictionary
- Overrides:
- isEmpty in class Dictionary
get
public final Object get(Object key)
- Forward call to Dictionary
- Overrides:
- get in class Dictionary
keys
public final Enumeration keys()
- Forward call to Dictionary
- Overrides:
- keys in class Dictionary
put
public final Object put(Object newKey,
Object newValue)
- Forward call to Dictionary
- Overrides:
- put in class Dictionary
remove
public final Object remove(Object key)
- Forward call to Dictionary
- Overrides:
- remove in class Dictionary
size
public final int size()
- Forward call to Dictionary
- Overrides:
- size in class Dictionary
main
public static void main(String arg[])
All Packages Class Hierarchy This Package Previous Next Index