Method Summary |
|
final public boolean | contains(String key) Tell if the table contains the given string. |
final public boolean | containsValue(String val) Tell if the table contains the given string. |
final public String | elementAt(int i) Get the nth element.
Parameters: i - index of the string to look up. |
final public String | get(String key) Tell if the table contains the given string.
Parameters: key - String to look up return the value of the string or null if not found. |
final public String | getByValue(String val) Tell if the table contains the given string in the value. |
final public String | getIgnoreCase(String key) Tell if the table contains the given string. |
final public int | getLength() Get the length of the list. |
final public void | put(String key, String value) Append a string onto the vector.
The strings go to the even locations in the array
and the values in the odd. |
final public void | remove(String key) Remove the given string and its value from this table. |