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

/libcore/luni/src/main/java/java/util/
H A DVector.java26 * Vector is an implementation of {@link List}, backed by an array and synchronized.
39 public class Vector<E> extends AbstractList<E> implements List<E>, class in inherits:AbstractList,List,RandomAccess,Cloneable,Serializable
66 public Vector() { method in class:Vector
78 public Vector(int capacity) { method in class:Vector
93 public Vector(int capacity, int capacityIncrement) { method in class:Vector
103 * Constructs a new instance of {@code Vector} containing the elements in
104 * {@code collection}. The order of the elements in the new {@code Vector}
110 public Vector(Collection<? extends E> collection) { method in class:Vector
261 Vector<E> vector = (Vector<
[all...]

Completed in 97 milliseconds