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

Method pollLastEntry

Ports/CLDC11/src/java/util/TreeMap.java:5336–5343  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5334 ///
5335 /// - java.util.NavigableMap#pollLastEntry()
5336 public Map.Entry<K, V> pollLastEntry() {
5337 Entry<K, V> node = findBiggestEntry();
5338 SimpleImmutableEntry<K, V> result = newImmutableEntry(node);
5339 if (null != node) {
5340 remove(node.key);
5341 }
5342 return result;
5343 }
5344
5345 /// {@inheritDoc}
5346 ///

Callers

nothing calls this directly

Calls 3

findBiggestEntryMethod · 0.95
newImmutableEntryMethod · 0.95
removeMethod · 0.95

Tested by

no test coverage detected