Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unmodifiableEntrySet (0.08 sec)

  1. 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);
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 163.5K bytes
    - Viewed (0)
  2. 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);
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 17:50:58 UTC 2025
    - 157.6K bytes
    - Viewed (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
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 86.5K bytes
    - Viewed (0)
Back to top