Definition at line 50 of file common/org/openmobileis/common/util/WildcardDictionary.java.
Public Member Functions | |
WildcardDictionary () | |
Constructor. | |
int | size () |
Returns the number of elements contained within the dictionary. | |
boolean | isEmpty () |
Returns true if the dictionary contains no elements. | |
Enumeration | keys () |
Returns an enumeration of the dictionary's keys. | |
Enumeration | elements () |
Returns an enumeration of the elements. Use the Enumeration methods. | |
synchronized Object | get (Object key) |
Gets the object associated with the specified key in the dictionary. | |
synchronized Object | put (Object key, Object element) |
Puts the specified element into the Dictionary, using the specified. | |
synchronized Object | remove (Object key) |
Removes the element corresponding to the key. Does nothing if the. | |
Static Public Member Functions | |
static boolean | match (String pattern, String string) |
Checks whether a string matches a given wildcard pattern. | |
static void | main (String[] args) |