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

Method findBiggestEntry

vm/JavaAPI/src/java/util/TreeMap.java:3946–3955  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3944 }
3945
3946 TreeMap.Entry<K, V> findBiggestEntry() {
3947 if (null != root){
3948 Node<K, V> node = maximum(root);
3949 TreeMap.Entry<K, V> ret = new TreeMap.Entry<K, V>(node.keys[node.right_idx], node.values[node.right_idx]);
3950 ret.node = node;
3951 ret.index = node.right_idx;
3952 return ret;
3953 }
3954 return null;
3955 }
3956
3957 TreeMap.Entry<K, V> findCeilingEntry(K key) {
3958 if (root == null) {

Callers 7

lastEntryMethod · 0.95
pollLastEntryMethod · 0.95
BoundedMapIteratorMethod · 0.45
theBiggestEntryMethod · 0.45
firstEntryMethod · 0.45
pollFirstEntryMethod · 0.45

Calls 1

maximumMethod · 0.95

Tested by

no test coverage detected