Java tutorial
//package com.java2s; import java.text.Collator; import java.util.SortedSet; import java.util.TreeSet; public class Main { public static <K> SortedSet<K> newSortedSet() { return new TreeSet(Collator.getInstance()); } }