The get method of the StringHashtable class has the following signatures:
get(String key)
get(char chars[], int offset, int length);
Gets a hash table value by using the hash table key.
public Object get(String key);
key | A hash table key. |
Gets a hash table value that contains characters from a subarray of the char argument.
public Object get(char chars[], int offset, int length);
chars[] | A subarray. |
offset | The index of the first character of the subarray. |
length | The subarray length. |