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

Method lowerKey

Ports/CLDC11/src/java/util/TreeMap.java:5394–5397  ·  view source on GitHub ↗
(K key)

Source from the content-addressed store, hash-verified

5392 ///
5393 /// - java.util.NavigableMap#lowerKey(Object)
5394 public K lowerKey(K key) {
5395 Map.Entry<K, V> entry = lowerEntry(key);
5396 return (null == entry) ? null : entry.getKey();
5397 }
5398
5399 /// {@inheritDoc}
5400 ///

Callers

nothing calls this directly

Calls 2

lowerEntryMethod · 0.95
getKeyMethod · 0.65

Tested by

no test coverage detected