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

/external/guava/guava/src/com/google/common/collect/
H A DLists.java73 public static <E> ArrayList<E> newArrayList() { method in class:Lists
89 public static <E> ArrayList<E> newArrayList(E... elements) { method in class:Lists
116 public static <E> ArrayList<E> newArrayList(Iterable<? extends E> elements) { method in class:Lists
121 : newArrayList(elements.iterator());
135 public static <E> ArrayList<E> newArrayList(Iterator<? extends E> elements) { method in class:Lists
137 ArrayList<E> list = newArrayList();

Completed in 54 milliseconds