Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for unmodifiableEntrySet (0.1 seconds)

  1. android/guava/src/com/google/common/collect/Maps.java

          return standardToArray(array);
        }
      }
    
      /** The implementation of {@link Maps#unmodifiableEntrySet(Set)}. */
      private static final class UnmodifiableEntrySet<
              K extends @Nullable Object, V extends @Nullable Object>
          extends UnmodifiableEntries<K, V> implements Set<Entry<K, V>> {
        UnmodifiableEntrySet(Set<Entry<K, V>> entries) {
          super(entries);
        }
    
    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)
  2. guava/src/com/google/common/collect/Maps.java

          return standardToArray(array);
        }
      }
    
      /** The implementation of {@link Maps#unmodifiableEntrySet(Set)}. */
      private static final class UnmodifiableEntrySet<
              K extends @Nullable Object, V extends @Nullable Object>
          extends UnmodifiableEntries<K, V> implements Set<Entry<K, V>> {
        UnmodifiableEntrySet(Set<Entry<K, V>> entries) {
          super(entries);
        }
    
    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)
  3. android/guava/src/com/google/common/collect/Multimaps.java

           */
          return Collections.unmodifiableSet(delegate().get(key));
        }
    
        @Override
        public Set<Map.Entry<K, V>> entries() {
          return Maps.unmodifiableEntrySet(delegate().entries());
        }
    
        @Override
        public Set<V> removeAll(@Nullable Object key) {
          throw new UnsupportedOperationException();
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 86K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/Multimaps.java

           */
          return Collections.unmodifiableSet(delegate().get(key));
        }
    
        @Override
        public Set<Map.Entry<K, V>> entries() {
          return Maps.unmodifiableEntrySet(delegate().entries());
        }
    
        @Override
        public Set<V> removeAll(@Nullable Object key) {
          throw new UnsupportedOperationException();
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 86.3K bytes
    - Click Count (0)
Back to Top