public class VectorOfFloat extends Vector
VectorcapacityIncrement, elementCount, elementData| Constructor | Description |
|---|---|
VectorOfFloat() |
Constructs an empty vector of Float objects.
|
VectorOfFloat(int initialCapacity) |
Constructs an empty vector with the specified initial capacity.
|
VectorOfFloat(int initialCapacity,
int capacityIncrement) |
Constructs an empty vector with the specified initial capacity
and capacity increment.
|
VectorOfFloat(java.lang.Object[] array) |
Constructs a vector from an array of Float.
|
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 VectorOfFloat()
public VectorOfFloat(int initialCapacity)
initialCapacity - The initial capacity of the vector.public VectorOfFloat(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 VectorOfFloat(java.lang.Object[] array)
array - The array of float to copy into the vector.