Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createKeySet (0.2 sec)

  1. 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();
        }
    
        @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  2. 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.
       */
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 21:07:18 UTC 2025
    - 52.9K bytes
    - Viewed (0)
Back to top