Java TreeMap.tailMap(K fromKey, boolean inclusive)
Syntax
TreeMap.tailMap(K fromKey, boolean inclusive) has the following syntax.
public NavigableMap <K , V> tailMap(K fromKey, boolean inclusive)
Example
In the following code shows how to use TreeMap.tailMap(K fromKey, boolean inclusive) method.
/* ww w .j ava 2 s . c o m*/
import java.util.SortedMap;
import java.util.TreeMap;
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");
System.out.println("Getting tail map");
SortedMap<Integer, String> treemapincl=treemap.tailMap(3,true);
System.out.println("Tail map values: "+treemapincl);
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »