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
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,​V extends java.lang.Object>
    • Method Summary

      All 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
      • Methods inherited from interface java.util.Map

        clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
    • Method Detail

      • get

        java.util.Map.Entry<K,​V> get​(int index)
        Return the entry at the specified index