Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for createKeySet (0.07 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  2. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top