- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for unmodifiableEntrySet (0.08 sec)
-
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) -
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) -
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(); } @OverrideRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 18:35:44 UTC 2025 - 86.5K bytes - Viewed (0)