- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for createKeySet (0.07 seconds)
-
android/guava/src/com/google/common/collect/Multimaps.java
CustomMultimap(Map<K, Collection<V>> map, Supplier<? extends Collection<V>> factory) { super(map); this.factory = checkNotNull(factory); } @Override Set<K> createKeySet() { return createMaybeNavigableKeySet(); } @Override Map<K, Collection<V>> createAsMap() { return createMaybeNavigableAsMap(); } @OverrideCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 86.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
} /** Returns an immutable sorted set of the keys in this map. */ @Override public ImmutableSortedSet<K> keySet() { return keySet; } @Override ImmutableSet<K> createKeySet() { throw new AssertionError("should never be called"); } /** * Returns an immutable collection of the values in this map, sorted by the ordering of the * corresponding keys. */
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 52.9K bytes - Click Count (0)