org.cementj.collect
Class ShortArrayList

java.lang.Object
  extended by org.cementj.collect.ShortArrayList
All Implemented Interfaces:
java.io.Serializable

public class ShortArrayList
extends java.lang.Object
implements java.io.Serializable

Dynamic list for short primitives. This class does NOT implement java.util.List.

Copyright: Delta Vortex Technologies, 2002.

See Also:
Serialized Form

Constructor Summary
ShortArrayList()
           
ShortArrayList(int initialCapacity)
           
ShortArrayList(int initialCapacity, int capacityIncrement)
           
 
Method Summary
 void add(short value)
          Adds a value to the end of the list.
 short get(int index)
          Returns value at specified index from the list.
 int length()
          Returns length of list.
 short[] toArray()
          Converts list to an array.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ShortArrayList

public ShortArrayList()

ShortArrayList

public ShortArrayList(int initialCapacity)

ShortArrayList

public ShortArrayList(int initialCapacity,
                      int capacityIncrement)
Method Detail

add

public void add(short value)
Adds a value to the end of the list.

Parameters:
value -

get

public short get(int index)
Returns value at specified index from the list.

Parameters:
index -
Returns:
value

toArray

public short[] toArray()
Converts list to an array.

Returns:
listAsArray

length

public int length()
Returns length of list.

Returns:
listLength


Copyright © 2003 Delta Vortex Technologies, Inc. All Rights Reserved.