Class Long2ReferenceArrayMap<V>

All Implemented Interfaces:
Function<Long,V>, Long2ReferenceFunction<V>, Long2ReferenceMap<V>, Serializable, Cloneable, Function<Long,V>, LongFunction<V>, Map<Long,V>

public class Long2ReferenceArrayMap<V> extends AbstractLong2ReferenceMap<V> implements Serializable, Cloneable
A simple, brute-force implementation of a map based on two parallel backing arrays.

The main purpose of this implementation is that of wrapping cleanly the brute-force approach to the storage of a very small number of pairs: just put them into two parallel arrays and scan linearly to find an item.

See Also:
  • Constructor Details

    • Long2ReferenceArrayMap

      public Long2ReferenceArrayMap(long[] key, Object[] value)
      Creates a new empty array map with given key and value backing arrays. The resulting map will have as many entries as the given arrays.

      It is responsibility of the caller that the elements of key are distinct.

      Parameters:
      key - the key array.
      value - the value array (it must have the same length as key).
    • Long2ReferenceArrayMap

      public Long2ReferenceArrayMap()
      Creates a new empty array map.
    • Long2ReferenceArrayMap

      public Long2ReferenceArrayMap(int capacity)
      Creates a new empty array map of given capacity.
      Parameters:
      capacity - the initial capacity.
    • Long2ReferenceArrayMap

      public Long2ReferenceArrayMap(Long2ReferenceMap<V> m)
      Creates a new empty array map copying the entries of a given map.
      Parameters:
      m - a map.
    • Long2ReferenceArrayMap

      public Long2ReferenceArrayMap(Map<? extends Long,? extends V> m)
      Creates a new empty array map copying the entries of a given map.
      Parameters:
      m - a map.
    • Long2ReferenceArrayMap

      public Long2ReferenceArrayMap(long[] key, Object[] value, int size)
      Creates a new array map with given key and value backing arrays, using the given number of elements.

      It is responsibility of the caller that the first size elements of key are distinct.

      Parameters:
      key - the key array.
      value - the value array (it must have the same length as key).
      size - the number of valid elements in key and value.
  • Method Details