structure5
Interface OrderedMap<K,V>

All Superinterfaces:
Map<K,V>
All Known Implementing Classes:
Table

public interface OrderedMap<K,V>
extends Map<K,V>

An interface the supports a Map whose values are kept in increasing order. Values stored within an OrderedMap should implement Comparable; ie. they should have an implemented compareTo method.

See Also:
Table, Comparable, Comparable.compareTo(T)

Method Summary
 
Methods inherited from interface structure5.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values