Class AbstractReference2FloatMap<K>

    • Method Detail

      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface Map<K,​Float>
      • keySet

        public ReferenceSet<K> keySet()
        Returns a type-specific-set view of the keys of this map.

        The view is backed by the set returned by Map.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 Map<K,​Float>
        Specified by:
        keySet in interface Reference2FloatMap<K>
        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 FloatCollection values()
        Returns a type-specific-set view of the values of this map.

        The view is backed by the set returned by Map.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 Map<K,​Float>
        Specified by:
        values in interface Reference2FloatMap<K>
        Returns:
        a set view of the values of this map; it may be safely cast to a type-specific interface.
        See Also:
        Map.values()
      • putAll

        public void putAll​(Map<? extends K,​? extends Float> m)
        Specified by:
        putAll in interface Map<K,​Float>
      • 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<K,​Float>
        Overrides:
        hashCode in class Object
        Returns:
        a hash code for this map.