Class Map<K,​V>

All Implemented Interfaces:
Serializable, Cloneable, Map<K,​V>

public class Map<K,​V>
extends OrderedMap<K,​V>
A Map is a data object that maintains a map from one set of data objects to another. This data object is superior to a Hashtable in instances where O(1) lookups are not a priority, due to its smaller memory footprint. Lookups in a map are accomplished in O(n) time. TODO: Figure out if this actually works anymore! (Is actually smaller in memory than a hashtable)
Author:
Clayton Sims
See Also:
Serialized Form