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

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DArrayListMultimap.java40 * ArrayListMultimap} will contain entries for both the new value and the old
58 public final class ArrayListMultimap<K, V> extends AbstractListMultimap<K, V> { class in inherits:AbstractListMultimap
65 * Creates a new, empty {@code ArrayListMultimap} with the default initial
68 public static <K, V> ArrayListMultimap<K, V> create() {
69 return new ArrayListMultimap<K, V>();
73 * Constructs an empty {@code ArrayListMultimap} with enough capacity to hold
81 public static <K, V> ArrayListMultimap<K, V> create(
83 return new ArrayListMultimap<K, V>(expectedKeys, expectedValuesPerKey);
87 * Constructs an {@code ArrayListMultimap} with the same mappings as the
92 public static <K, V> ArrayListMultimap<
97 private ArrayListMultimap() { method in class:ArrayListMultimap
102 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) { method in class:ArrayListMultimap
108 private ArrayListMultimap(Multimap<? extends K, ? extends V> multimap) { method in class:ArrayListMultimap
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DArrayListMultimap.java45 * ArrayListMultimap} will contain entries for both the new value and the old
63 public final class ArrayListMultimap<K, V> extends AbstractListMultimap<K, V> { class in inherits:AbstractListMultimap
70 * Creates a new, empty {@code ArrayListMultimap} with the default initial
73 public static <K, V> ArrayListMultimap<K, V> create() {
74 return new ArrayListMultimap<K, V>();
78 * Constructs an empty {@code ArrayListMultimap} with enough capacity to hold
86 public static <K, V> ArrayListMultimap<K, V> create(
88 return new ArrayListMultimap<K, V>(expectedKeys, expectedValuesPerKey);
92 * Constructs an {@code ArrayListMultimap} with the same mappings as the
97 public static <K, V> ArrayListMultimap<
102 private ArrayListMultimap() { method in class:ArrayListMultimap
107 private ArrayListMultimap(int expectedKeys, int expectedValuesPerKey) { method in class:ArrayListMultimap
113 private ArrayListMultimap(Multimap<? extends K, ? extends V> multimap) { method in class:ArrayListMultimap
[all...]

Completed in 274 milliseconds