Microsoft SDK for Java

get

The get method of the StringHashtable class has the following signatures:

get(String key)
get(char chars[], int offset, int length);

get(String key)

Gets a hash table value by using the hash table key.

Syntax

public Object get(String key);

Parameters

key A hash table key.

get(char chars[], int offset, int length)

Gets a hash table value that contains characters from a subarray of the char argument.

Syntax

public Object get(char chars[], int offset, int length);

Parameters

chars[] A subarray.
offset The index of the first character of the subarray.
length The subarray length.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.