Class AbstractMap<K,​V>

    • Constructor Detail

      • AbstractMap

        public AbstractMap()
    • Method Detail

      • keys

        @NotNull
        public Iterable<K> keys()
        Description copied from interface: Map
        Returns the keys for this map.
        Specified by:
        keys in interface Map<K,​V>
      • values

        @NotNull
        public Iterable<V> values()
        Description copied from interface: Map
        Returns the values for this map.
        Specified by:
        values in interface Map<K,​V>
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • asMap

        @NotNull
        public java.util.Map<K,​V> asMap()
        Description copied from interface: Map
        Returns an immutable view of this map as an instance of Map.
        Specified by:
        asMap in interface Map<K,​V>