Home | History | Annotate | Download | only in collect

Lines Matching refs:arrayList

25 import java.util.ArrayList;
34 * Implementation of {@code Multimap} that uses an {@code ArrayList} to store
36 * {@link ArrayList} of values.
63 // Default from ArrayList
121 * Creates a new, empty {@code ArrayList} to hold the collection of values for
125 return new ArrayList<V>(expectedValuesPerKey);
133 ArrayList<V> arrayList = (ArrayList<V>) collection;
134 arrayList.trimToSize();