Class ArrayMap<K,​V>

  • All Implemented Interfaces:
    Map<K,​V>

    public class ArrayMap<K,​V>
    extends AbstractMap<K,​V>
    INTERNAL: Immutable Map implementation that stores its keys and values in two arrays. Note that the implementation is immutable in that you cannot modify it using the public Map interface. You can modify it by modifying the underlying arrays.