Java tutorial
//package com.java2s; // License as published by the Free Software Foundation; either import java.util.TreeMap; public class Main { /** * Type-safe initializer. */ public static final <K, V> TreeMap<K, V> newTreeMap() { return new TreeMap<K, V>(); } }