TreeMap.tailMap(K fromKey, boolean inclusive) has the following syntax.
public NavigableMap <K , V> tailMap(K fromKey, boolean inclusive)
In the following code shows how to use TreeMap.tailMap(K fromKey, boolean inclusive) method.
/*from w w w.jav a2 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.