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

Method headMap

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

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

(K end, boolean inclusive)

Source from the content-addressed store, hash-verified

5520 * @since 1.6
5521 */
5522 public NavigableMap<K, V> headMap(K end, boolean inclusive) {
5523 // check for error
5524 keyCompare(end, end);
5525 return new AscendingSubMap<K, V>(this, end, inclusive);
5526 }
5527
5528 /**
5529 * {@inheritDoc}

Callers

nothing calls this directly

Calls 1

keyCompareMethod · 0.95

Tested by

no test coverage detected