- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for standardLowerKey (0.3 seconds)
-
android/guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
} @Override public @Nullable Entry<K, V> lowerEntry(K key) { return standardLowerEntry(key); } @Override public @Nullable K lowerKey(K key) { return standardLowerKey(key); } @Override public @Nullable Entry<K, V> floorEntry(K key) { return standardFloorEntry(key); } @Override public @Nullable K floorKey(K key) {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) -
android/guava/src/com/google/common/collect/ForwardingNavigableMap.java
* {@link #lowerEntry}, you may wish to override {@code lowerKey} to forward to this * implementation. */ protected @Nullable K standardLowerKey(@ParametricNullness K key) { return keyOrNull(lowerEntry(key)); } @Override public @Nullable Entry<K, V> floorEntry(@ParametricNullness K key) { return delegate().floorEntry(key); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 14.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingNavigableMap.java
* {@link #lowerEntry}, you may wish to override {@code lowerKey} to forward to this * implementation. */ protected @Nullable K standardLowerKey(@ParametricNullness K key) { return keyOrNull(lowerEntry(key)); } @Override public @Nullable Entry<K, V> floorEntry(@ParametricNullness K key) { return delegate().floorEntry(key); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 14.3K bytes - Click Count (0)