Interface OrderedMap<K,V>
- 
- Type Parameters:
- K- type of the key
- V- type of the value
 - All Superinterfaces:
- java.util.Map<K,V>
 - All Known Implementing Classes:
- FSOrderedMapFile,- WTreeMap
 
 public interface OrderedMap<K,V> extends java.util.Map<K,V>Specified a map interface where keys are ordered, and can be retrieved using an integer index.- Since:
- 3.0
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map.Entry<K,V>get(int index)Return the entry at the specified index
 
-