Get Tail Set from TreeSet in Java
Description
The following code shows how to get Tail Set from TreeSet.
Example
//from w w w. ja va2 s. c o m
import java.util.SortedSet;
import java.util.TreeSet;
public class Main {
public static void main(String[] args) {
TreeSet<String> tSet = new TreeSet<String>();
tSet.add("1");
tSet.add("2");
tSet.add("3");
tSet.add("5");
tSet.add("4");
SortedSet sortedSet = tSet.tailSet("2");
System.out.println("Tail Set Contains : " + sortedSet);
}
}
The code above generates the following result.