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

Method pollFirstEntry

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

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

()

Source from the content-addressed store, hash-verified

5276 * @since 1.6
5277 */
5278 public Map.Entry<K, V> pollFirstEntry() {
5279 Entry<K, V> node = findSmallestEntry();
5280 SimpleImmutableEntry<K, V> result = newImmutableEntry(node);
5281 if (null != node) {
5282 remove(node.key);
5283 }
5284 return result;
5285 }
5286
5287 /**
5288 * {@inheritDoc}

Callers

nothing calls this directly

Calls 3

findSmallestEntryMethod · 0.95
newImmutableEntryMethod · 0.95
removeMethod · 0.95

Tested by

no test coverage detected