Class Byte2CharArrayMap

    • Constructor Detail

      • Byte2CharArrayMap

        public Byte2CharArrayMap​(byte[] key,
                                 char[] 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).
      • Byte2CharArrayMap

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

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

        public Byte2CharArrayMap​(Byte2CharMap m)
        Creates a new empty array map copying the entries of a given map.
        Parameters:
        m - a map.
      • Byte2CharArrayMap

        public Byte2CharArrayMap​(Map<? extends Byte,​? extends Character> m)
        Creates a new empty array map copying the entries of a given map.
        Parameters:
        m - a map.
      • Byte2CharArrayMap

        public Byte2CharArrayMap​(byte[] key,
                                 char[] 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.