Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for createKeySet (0.09 seconds)

  1. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableMap.java

      @Override
      public ImmutableSet<K> keySet() {
        if (cachedKeySet != null) {
          return cachedKeySet;
        }
        return cachedKeySet = createKeySet();
      }
    
      ImmutableSet<K> createKeySet() {
        return new ImmutableMapKeySet<K, V>(this);
      }
    
      UnmodifiableIterator<K> keyIterator() {
        final UnmodifiableIterator<Entry<K, V>> entryIterator = entrySet().iterator();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 15:51:42 GMT 2026
    - 17.2K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/ImmutableMap.java

        ImmutableSet<K> result = keySet;
        return (result == null) ? keySet = createKeySet() : result;
      }
    
      /*
       * This could have a good default implementation of `return new ImmutableKeySet<K, V>(this)`, but
       * ProGuard can't figure out how to eliminate that default when RegularImmutableMap overrides it.
       */
      abstract ImmutableSet<K> createKeySet();
    
      UnmodifiableIterator<K> keyIterator() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 44.7K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/Maps.java

        @LazyInit private transient @Nullable Set<K> keySet;
    
        @Override
        public Set<K> keySet() {
          Set<K> result = keySet;
          return (result == null) ? keySet = createKeySet() : result;
        }
    
        Set<K> createKeySet() {
          return new KeySet<>(this);
        }
    
        @LazyInit private transient @Nullable Collection<V> values;
    
        @Override
        public Collection<V> values() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/Maps.java

        @LazyInit private transient @Nullable Set<K> keySet;
    
        @Override
        public Set<K> keySet() {
          Set<K> result = keySet;
          return (result == null) ? keySet = createKeySet() : result;
        }
    
        Set<K> createKeySet() {
          return new KeySet<>(this);
        }
    
        @LazyInit private transient @Nullable Collection<V> values;
    
        @Override
        public Collection<V> values() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
  5. guava/src/com/google/common/collect/ImmutableMultimap.java

       * appear in this multimap.
       */
      @Override
      public ImmutableSet<K> keySet() {
        return map.keySet();
      }
    
      @Override
      Set<K> createKeySet() {
        throw new AssertionError("unreachable");
      }
    
      /**
       * Returns an immutable map that associates each key with its corresponding values in the
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 28.1K bytes
    - Click Count (0)
  6. guava/src/com/google/common/collect/StandardTable.java

                  }
                }
                return new EntryImpl();
              }
            }
            return endOfData();
          }
        }
    
        @Override
        Set<R> createKeySet() {
          return new KeySet();
        }
    
        @WeakOuter
        private final class KeySet extends Maps.KeySet<R, V> {
          KeySet() {
            super(Column.this);
          }
    
          @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
Back to Top