Java TreeMap.lowerEntry(K key)
Syntax
TreeMap.lowerEntry(K key) has the following syntax.
public Map.Entry <K , V> lowerEntry(K key)
Example
In the following code shows how to use TreeMap.lowerEntry(K key) method.
import java.util.TreeMap;
//from w w w . j ava 2 s. co m
public class Main {
public static void main(String[] args) {
TreeMap<Integer, String> treemap = new TreeMap<Integer, String> ();
// populating tree map
treemap.put(2, "two");
treemap.put(1, "one");
treemap.put(3, "three");
treemap.put(6, "six");
treemap.put(5, "from java2s.com");
// getting lower entry
System.out.println("Checking lower entry");
System.out.println("Value is: "+ treemap.lowerEntry(5));
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »