HomeSort by relevance Sort by last modified time
    Searched defs:Maps (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/com/google/android/collect/
Maps.java 22 * Provides static methods for creating mutable {@code Maps} instances easily.
24 public class Maps {
  /external/guava/src/com/google/common/collect/
ImmutableMap.java 37 * convenient for {@code public static final} maps ("constant maps") and also
138 return Maps.immutableEntry(checkNotNull(key), checkNotNull(value));
143 * static final} maps ("constant maps"). Example: <pre> {@code
152 * For <i>small</i> immutable maps, the {@code ImmutableMap.of()} methods are
156 * multiple times to build multiple maps in series. Each map is a superset of
157 * the maps created before it.
345 Maps.standardJoiner.appendTo(result, this);
LinkedHashMultimap.java 134 Maps.capacity(multimap.keySet().size())));
136 = new LinkedHashSet<Map.Entry<K, V>>(Maps.capacity(multimap.size()));
150 return new LinkedHashSet<V>(Maps.capacity(expectedValuesPerKey));
181 return Maps.immutableEntry(key, value);
265 linkedEntries.remove(Maps.immutableEntry(key, value));
367 setMap(new LinkedHashMap<K, Collection<V>>(Maps.capacity(distinctKeys)));
377 linkedEntries.add(Maps.immutableEntry(key, value));
Maps.java 61 public final class Maps {
62 private Maps() {}
250 * BiMap<Long, String> map = Maps.synchronizedBiMap(
275 * Computes the difference between two maps. This difference is an immutable
276 * snapshot of the state of the maps at the time this method is called. It
277 * will never change, even if the maps change at a later time.
280 * the supplied maps must be well-behaved with respect to
283 * <p><b>Note:</b>If you only need to know whether two maps have the same
288 * @return the difference between the two maps
581 /** @see Maps#unmodifiableEntrySet(Set) *
    [all...]

Completed in 381 milliseconds