Abstract Map
Parameters
the type of map keys. The map is invariant in its key type.
the type of map values. The map is covariant in its value type.
Functions
Properties
Inheritors
Extensions
Appends all elements yielded from results of transform function being invoked on each entry of original map, to the given destination.
Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.
Returns the largest value among all values produced by selector function applied to each entry in the map.
Returns the first entry having the largest value according to the provided comparator or null
if there are no entries.
Returns the smallest value among all values produced by selector function applied to each entry in the map.
Returns a map containing all entries of the original map except the entry with the given key.
Returns a map containing all entries of the original map except those entries the keys of which are contained in the given keys collection.
Returns a map containing all entries of the original map except those entries the keys of which are contained in the given keys array.
Returns a map containing all entries of the original map except those entries the keys of which are contained in the given keys sequence.
Returns the first entry having the smallest value according to the provided comparator or null
if there are no entries.
Creates a new read-only map by replacing or adding an entry to this map from a given key-value pair.
Creates a new read-only map by replacing or adding entries to this map from a given collection of key-value pairs.
Creates a new read-only map by replacing or adding entries to this map from a given array of key-value pairs.
Creates a new read-only map by replacing or adding entries to this map from a given sequence of key-value pairs.
Creates a new read-only map by replacing or adding entries to this map from another map.
Returns a new mutable map containing all key-value pairs from the original map.
Converts this Map to a Properties object.
Converts this Map to a SortedMap. The resulting SortedMap determines the equality and order of keys according to their natural sorting order.
Converts this Map to a SortedMap. The resulting SortedMap determines the equality and order of keys according to the sorting order provided by the given comparator.