- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for higherKey (0.04 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableMapNavigationTester.java
assertEquals(c, navigableMap.higherEntry(a.getKey())); assertEquals(c.getKey(), navigableMap.higherKey(a.getKey())); assertEquals(c, navigableMap.higherEntry(b.getKey())); assertEquals(c.getKey(), navigableMap.higherKey(b.getKey())); assertEquals(null, navigableMap.higherEntry(c.getKey())); assertEquals(null, navigableMap.higherKey(c.getKey())); } @CollectionSize.Require(SEVERAL) public void testLast() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 20:54:16 UTC 2025 - 9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableMap.java
return tailMap(key, false).firstEntry(); } @Override public @Nullable K higherKey(@ParametricNullness K key) { return delegate().higherKey(key); } /** * A sensible definition of {@link #higherKey} in terms of {@code higherEntry}. If you override * {@code higherEntry}, you may wish to override {@code higherKey} to forward to this * implementation. */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableMap.java
return tailMap(key, false).firstEntry(); } @Override public @Nullable K higherKey(@ParametricNullness K key) { return delegate().higherKey(key); } /** * A sensible definition of {@link #higherKey} in terms of {@code higherEntry}. If you override * {@code higherEntry}, you may wish to override {@code higherKey} to forward to this * implementation. */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java
} @Override public @Nullable Entry<K, V> higherEntry(K key) { return delegate.higherEntry(checkValid(key)); } @Override public @Nullable K higherKey(K key) { return delegate.higherKey(checkValid(key)); } @Override public boolean isEmpty() { return delegate.isEmpty(); } @Override public NavigableSet<K> keySet() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 7.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java
} @Override public @Nullable Entry<K, V> higherEntry(K key) { return delegate.higherEntry(checkValid(key)); } @Override public @Nullable K higherKey(K key) { return delegate.higherKey(checkValid(key)); } @Override public boolean isEmpty() { return delegate.isEmpty(); } @Override public NavigableSet<K> keySet() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 7.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractNavigableMap.java
} @Override public @Nullable K ceilingKey(@ParametricNullness K key) { return Maps.keyOrNull(ceilingEntry(key)); } @Override public @Nullable K higherKey(@ParametricNullness K key) { return Maps.keyOrNull(higherEntry(key)); } abstract Iterator<Entry<K, V>> descendingEntryIterator(); @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractNavigableMap.java
} @Override public @Nullable K ceilingKey(@ParametricNullness K key) { return Maps.keyOrNull(ceilingEntry(key)); } @Override public @Nullable K higherKey(@ParametricNullness K key) { return Maps.keyOrNull(higherEntry(key)); } abstract Iterator<Entry<K, V>> descendingEntryIterator(); @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
return standardCeilingKey(key); } @Override public @Nullable Entry<K, V> higherEntry(K key) { return standardHigherEntry(key); } @Override public @Nullable K higherKey(K key) { return standardHigherKey(key); } @Override public @Nullable Entry<K, V> firstEntry() { return standardFirstEntry(); } /*
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Dec 16 03:23:31 UTC 2025 - 9.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
Entry<K, Collection<V>> entry = sortedMap().higherEntry(key); return (entry == null) ? null : wrapEntry(entry); } @Override public @Nullable K higherKey(@ParametricNullness K key) { return sortedMap().higherKey(key); } @Override public @Nullable Entry<K, Collection<V>> firstEntry() { Entry<K, Collection<V>> entry = sortedMap().firstEntry();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 48.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Maps.java
public @Nullable Entry<K, V2> higherEntry(@ParametricNullness K key) { return transformEntry(fromMap().higherEntry(key)); } @Override public @Nullable K higherKey(@ParametricNullness K key) { return fromMap().higherKey(key); } @Override public @Nullable Entry<K, V2> lastEntry() { return transformEntry(fromMap().lastEntry()); } @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 23 17:50:58 UTC 2025 - 157.6K bytes - Viewed (0)