Class AbstractChar2ObjectMap<V>

    • Constructor Detail

      • AbstractChar2ObjectMap

        protected AbstractChar2ObjectMap()
    • Method Detail

      • putAll

        public void putAll​(Map<? extends Character,​? extends V> m)
        Puts all pairs in the given map. If the map implements the interface of this map, it uses the faster iterators.
        Specified by:
        putAll in interface Map<Character,​V>
        Parameters:
        m - a map.
      • keySet

        public CharSet keySet()
        Returns a type-specific-set view of the keys of this map.

        The view is backed by the set returned by entrySet(). Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.

        Specified by:
        keySet in interface Char2ObjectMap<V>
        Specified by:
        keySet in interface Map<Character,​V>
        Returns:
        a set view of the keys of this map; it may be safely cast to a type-specific interface.
        See Also:
        Map.keySet()
      • values

        public ObjectCollection<V> values()
        Returns a type-specific-set view of the values of this map.

        The view is backed by the set returned by entrySet(). Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.

        Specified by:
        values in interface Char2ObjectMap<V>
        Specified by:
        values in interface Map<Character,​V>
        Returns:
        a set view of the values of this map; it may be safely cast to a type-specific interface.
        See Also:
        Map.values()
      • hashCode

        public int hashCode()
        Returns a hash code for this map. The hash code of a map is computed by summing the hash codes of its entries.
        Specified by:
        hashCode in interface Map<Character,​V>
        Overrides:
        hashCode in class Object
        Returns:
        a hash code for this map.