Java Collection Tutorial - Java NavigableMap.pollLastEntry()








Syntax

NavigableMap.pollLastEntry() has the following syntax.

Map.Entry < K , V > pollLastEntry()

Example

In the following code shows how to use NavigableMap.pollLastEntry() method.

//  w ww .  j a va2  s. c o m

import java.util.Iterator;
import java.util.NavigableMap;
import java.util.NavigableSet;
import java.util.TreeMap;

public class Main {
  public static void main(String[] args) {
    NavigableMap<String, Integer> navigableMap = new TreeMap<String, Integer>();
    String[] letters = { "a", "b", "c" };
    int[] ints = { 3, 2, 1 };
    for (int i = 0; i < letters.length; i++){
      navigableMap.put(letters[i], ints[i]);
    }
    System.out.println("Map = " + navigableMap);
    System.out.println("Poll first entry: " + navigableMap.pollLastEntry());
  }
}

The code above generates the following result.