public class VectorOfDouble extends Vector
VectorcapacityIncrement, elementCount, elementData| Constructor | Description |
|---|---|
VectorOfDouble() |
Constructs an empty vector of Double objects.
|
VectorOfDouble(int initialCapacity) |
Constructs an empty vector with the specified initial capacity.
|
VectorOfDouble(int initialCapacity,
int capacityIncrement) |
Constructs an empty vector with the specified initial capacity
and capacity increment.
|
VectorOfDouble(java.lang.Object[] array) |
Constructs a vector from an array of Double.
|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitaddElement, capacity, clone, contains, copyInto, elementAt, elements, ensureCapacity, firstElement, indexOf, indexOf, insertElementAt, isEmpty, lastElement, lastIndexOf, lastIndexOf, removeAllElements, removeElement, removeElementAt, setElementAt, setSize, size, toString, trimToSizepublic VectorOfDouble()
public VectorOfDouble(int initialCapacity)
initialCapacity - The initial capacity of the vector.public VectorOfDouble(int initialCapacity,
int capacityIncrement)
initialCapacity - The initial capacity of the vector.capacityIncrement - The amount by which the capacity is increased when the vector overflows.public VectorOfDouble(java.lang.Object[] array)
array - The array of double to copy into the vector.