| java.lang.Object com.versant.core.util.IntArray
IntArray | final public class IntArray (Code) | | Growable int[]. This is based com.sosnoski.util.array.IntArray from
Sosnoski Software Solutions, Inc.
|
Method Summary | |
public void | add(int v) | public void | add(int index, int value) Add a value at a specified index in the array. | public void | clear() | public int | get(int index) Retrieve the value present at an index position in the array. | public int | size() | public int[] | toArray() Constructs and returns a simple array containing the same data as held
in this growable array. |
IntArray | public IntArray()(Code) | | |
IntArray | public IntArray(int capacity)(Code) | | |
add | public void add(int v)(Code) | | |
add | public void add(int index, int value)(Code) | | Add a value at a specified index in the array.
|
clear | public void clear()(Code) | | |
get | public int get(int index)(Code) | | Retrieve the value present at an index position in the array.
|
toArray | public int[] toArray()(Code) | | Constructs and returns a simple array containing the same data as held
in this growable array.
|
|
|