MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / tailMap

Method tailMap

vm/JavaAPI/src/java/util/TreeMap.java:5534–5538  ·  view source on GitHub ↗

{@inheritDoc} @see java.util.NavigableMap#tailMap(Object, boolean) @since 1.6

(K start, boolean inclusive)

Source from the content-addressed store, hash-verified

5532 * @since 1.6
5533 */
5534 public NavigableMap<K, V> tailMap(K start, boolean inclusive) {
5535 // check for error
5536 keyCompare(start, start);
5537 return new AscendingSubMap<K, V>(start, inclusive, this);
5538 }
5539
5540 /**
5541 * Returns a sorted map over a range of this sorted map with all keys

Callers

nothing calls this directly

Calls 1

keyCompareMethod · 0.95

Tested by

no test coverage detected