- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for StandardKeySet (0.07 seconds)
-
guava-tests/test/com/google/common/collect/ForwardingMapTest.java
return map; } @Override public Set<String> keySet() { return new StandardKeySet(); } }; callAllPublicMethods(new TypeToken<Set<String>>() {}, forward.keySet()); // These are the methods specified by StandardKeySet verify(map, atLeast(0)).clear(); verify(map, atLeast(0)).containsKey(any()); verify(map, atLeast(0)).isEmpty();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 12.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
public int hashCode() { return standardHashCode(); } @Override public Set<K> keySet() { /* * We can't use StandardKeySet, as NavigableMapTestSuiteBuilder assumes that our keySet is a * NavigableSet. We test StandardKeySet in the superclass, so it's still covered. */ return navigableKeySet(); } @Override public Collection<V> values() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Dec 16 03:23:31 GMT 2025 - 9.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingMap.java
* ForwardingMap#keySet} to forward to this implementation or a subclass thereof. * * @since 10.0 */ protected class StandardKeySet extends Maps.KeySet<K, V> { /** Constructor for use by subclasses. */ public StandardKeySet() { super(ForwardingMap.this); } } /** * A sensible, albeit inefficient, definition of {@link #containsKey} in terms of the {@code
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 06 17:32:30 GMT 2025 - 9.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingMap.java
* ForwardingMap#keySet} to forward to this implementation or a subclass thereof. * * @since 10.0 */ protected class StandardKeySet extends Maps.KeySet<K, V> { /** Constructor for use by subclasses. */ public StandardKeySet() { super(ForwardingMap.this); } } /** * A sensible, albeit inefficient, definition of {@link #containsKey} in terms of the {@code
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 06 17:32:30 GMT 2025 - 9.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/ForwardingSortedMapTest.java
return standardEquals(object); } @Override public int hashCode() { return standardHashCode(); } @Override public Set<K> keySet() { return new StandardKeySet(); } @Override public Collection<V> values() { return new StandardValues(); } @Override public String toString() { return standardToString(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 20:34:52 GMT 2025 - 7.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/ForwardingSortedMapTest.java
return standardEquals(object); } @Override public int hashCode() { return standardHashCode(); } @Override public Set<K> keySet() { return new StandardKeySet(); } @Override public Collection<V> values() { return new StandardValues(); } @Override public String toString() { return standardToString(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 20:34:52 GMT 2025 - 7.7K bytes - Click Count (0)