java.lang.Object
java.util.AbstractCollection
java.util.AbstractList
java.util.Vector
com.flexstor.common.util.FlexVector
- All Implemented Interfaces:
- java.lang.Cloneable, java.util.Collection, java.lang.Iterable, java.util.List, java.util.RandomAccess, java.io.Serializable
- public class FlexVector
- extends java.util.Vector
This class is merely a class as an interface between
java.util.vector and potentially derived classes. As of now,
FlexVector does not implement any methods.
|
Constructor Summary |
FlexVector()
Constructor documentation identical to java.util.vector |
FlexVector(int initialCapacity)
|
FlexVector(int initialCapacity,
int capacityIncrement)
|
| Methods inherited from class java.util.Vector |
add, add, addAll, addAll, addElement, capacity, clear, clone, contains, containsAll, copyInto, elementAt, elements, ensureCapacity, equals, firstElement, get, hashCode, indexOf, indexOf, insertElementAt, isEmpty, lastElement, lastIndexOf, lastIndexOf, remove, remove, removeAll, removeAllElements, removeElement, removeElementAt, removeRange, retainAll, set, setElementAt, setSize, size, subList, toArray, toArray, toString, trimToSize |
FlexVector
public FlexVector()
- Constructor documentation identical to java.util.vector
FlexVector
public FlexVector(int initialCapacity)
FlexVector
public FlexVector(int initialCapacity,
int capacityIncrement)
addElements
public void addElements(java.lang.Object[] obj)
setElements
public void setElements(java.lang.Object[] obj)
addVector
public void addVector(java.util.Vector vect)
- Adds the elements of a Vector
as Elements to this Vector
(as opposed to adding the entire vector as one element
toStringArray
public final java.lang.String[] toStringArray()
- toStringArray
Uses copyInto to copy items into a String array all items are copied
toStringArray
public final java.lang.String[] toStringArray(boolean filter)
- toStringArray