org.cementj.collect
Class DoubleArrayList

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

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

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

Copyright: Delta Vortex Technologies, 2002.

See Also:
Serialized Form

Constructor Summary
DoubleArrayList()
           
DoubleArrayList(int initialCapacity)
           
DoubleArrayList(int initialCapacity, int capacityIncrement)
           
 
Method Summary
 void add(double value)
          Adds a value to the end of the list.
 double get(int index)
          Returns value at specified index from the list.
 int length()
          Returns length of list.
 double[] 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

DoubleArrayList

public DoubleArrayList()

DoubleArrayList

public DoubleArrayList(int initialCapacity)

DoubleArrayList

public DoubleArrayList(int initialCapacity,
                       int capacityIncrement)
Method Detail

add

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

Parameters:
value -

get

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

Parameters:
index -
Returns:
value

toArray

public double[] 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.