Method Summary |
|
public void | add(String value) Add a value at the end of the array. |
public void | clear() Set the array to the empty state. |
public Object | clone() Duplicates the object with the generic call. |
final public void | ensureCapacity(int min) Ensure that the array has the capacity for at least the specified
number of values. |
public String | get(int index) Get a value from the array. |
public boolean | isEmpty() Check if array is empty. |
public void | remove(int count) Remove some number of values from the end of the array. |
public int | size() Get the number of values currently present in the array. |
public String[] | toArray() Constructs and returns a simple array containing the same data as held
in this array. |