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

Method lowerKey

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

{@inheritDoc} @see java.util.NavigableMap#lowerKey(Object) @since 1.6

(K key)

Source from the content-addressed store, hash-verified

5337 * @since 1.6
5338 */
5339 public K lowerKey(K key) {
5340 Map.Entry<K, V> entry = lowerEntry(key);
5341 return (null == entry) ? null : entry.getKey();
5342 }
5343
5344 /**
5345 * {@inheritDoc}

Callers

nothing calls this directly

Calls 2

lowerEntryMethod · 0.95
getKeyMethod · 0.65

Tested by

no test coverage detected