All Downloads are FREE. Search and download functionalities are using the official Maven repository.

water.util.IcedSortedHashMap Maven / Gradle / Ivy

package water.util;

import java.util.Map;
import java.util.TreeMap;

/** Iced / Freezable Sorted HashMap.  Delegates to a TreeMap for
 *  all its operations.
 */
public class IcedSortedHashMap extends IcedHashMapBase {
  transient TreeMap _map;
  public IcedSortedHashMap() { init(); }
  @Override protected Map map() { return _map; }
  @Override protected Map init() { return _map = new TreeMap<>(); }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy