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

Method subMap

Ports/CLDC11/src/java/util/TreeMap.java:5586–5593  ·  view source on GitHub ↗
(K start, boolean startInclusive, K end,
            boolean endInclusive)

Source from the content-addressed store, hash-verified

5584 ///
5585 /// - java.util.NavigableMap#subMap(Object, boolean, Object, boolean)
5586 public NavigableMap<K, V> subMap(K start, boolean startInclusive, K end,
5587 boolean endInclusive) {
5588 if (keyCompare(start, end) <= 0) {
5589 return new AscendingSubMap<K, V>(start, startInclusive, this, end,
5590 endInclusive);
5591 }
5592 throw new IllegalArgumentException();
5593 }
5594
5595 /// {@inheritDoc}
5596 ///

Callers

nothing calls this directly

Calls 4

keyCompareMethod · 0.95
toComparableMethod · 0.95
compareToMethod · 0.65
compareMethod · 0.65

Tested by

no test coverage detected