Searched defs:Vector (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DVector.java33 * The {@code Vector} class implements a growable array of
36 * {@code Vector} can grow or shrink as needed to accommodate
37 * adding and removing items after the {@code Vector} has been created.
73 * implementations, {@code Vector} is synchronized. If a thread-safe
75 * ArrayList} in place of {@code Vector}.
83 public class Vector<E> class in inherits:AbstractList,List,RandomAccess,Cloneable,java.io.Serializable
92 * <p>Any array elements following the last element in the Vector are null.
99 * The number of valid components in this {@code Vector} object.
130 public Vector(int initialCapacity, int capacityIncrement) { method in class:Vector
147 public Vector(in method in class:Vector
156 public Vector() { method in class:Vector
170 public Vector(Collection<? extends E> c) { method in class:Vector
[all...]

Completed in 49 milliseconds