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

/openjdk7/jdk/src/share/classes/java/util/
H A DArrays.java2828 return new ArrayList<>(a);
2834 private static class ArrayList<E> extends AbstractList<E> class in class:Arrays
2840 ArrayList(E[] array) { method in class:Arrays.ArrayList
H A DArrayList.java43 * <p>Each <tt>ArrayList</tt> instance has a <i>capacity</i>. The capacity is
45 * at least as large as the list size. As elements are added to an ArrayList,
50 * <p>An application can increase the capacity of an <tt>ArrayList</tt> instance
55 * If multiple threads access an <tt>ArrayList</tt> instance concurrently,
67 * List list = Collections.synchronizedList(new ArrayList(...));</pre>
102 public class ArrayList<E> extends AbstractList<E> class in inherits:AbstractList,List,RandomAccess,Cloneable,java.io.Serializable
118 * The array buffer into which the elements of the ArrayList are stored.
119 * The capacity of the ArrayList is the length of this array buffer. Any
120 * empty ArrayList with elementData == EMPTY_ELEMENTDATA will be expanded to
126 * The size of the ArrayList (th
139 public ArrayList(int initialCapacity) { method in class:ArrayList
150 public ArrayList() { method in class:ArrayList
163 public ArrayList(Collection<? extends E> c) { method in class:ArrayList
[all...]

Completed in 42 milliseconds