Online Java Compiler By
JavaTpoint.com
import java.util.*; public class CollectionsCheckedSortedMapExample1 { public static void main(String[] args) { //create map SortedMap
smap = new TreeMap
(); //Insert values in the Map smap.put("JavaTpoint", 1100); smap.put("Hindi100", 500); smap.put("SSSIT", 1300); smap.put("ABCD", 1200); //Get type safe view of the sorted Map System.out.println("Type safe view of the Sorted Map is: "+Collections.checkedSortedMap(smap,String.class,Integer.class)); } }
Output