SequencedMap (Java SE 26 & JDK 26)
- Type Parameters:
K- the type of keys maintained by this mapV- the type of mapped values
- All Superinterfaces:
Map<K,V>
- All Known Subinterfaces:
ConcurrentNavigableMap<K,V>, NavigableMap<K, V>, SortedMap<K, V>
- All Known Implementing Classes:
ConcurrentSkipListMap, LinkedHashMap, TreeMap
-
Nested Class Summary
-
Method Summary
Returns the first key-value mapping in this map, or
nullif the map is empty.Returns the last key-value mapping in this map, or
nullif the map is empty.Removes and returns the first key-value mapping in this map, or
nullif the map is empty (optional operation).Removes and returns the last key-value mapping in this map, or
nullif the map is empty (optional operation).default VInserts the given mapping into the map if it is not already present, or replaces the value of a mapping if it is already present (optional operation).
default VInserts the given mapping into the map if it is not already present, or replaces the value of a mapping if it is already present (optional operation).
reversed()Returns a reverse-ordered view of this map.
Returns a
SequencedSetview of this map'sentrySet.Returns a
SequencedSetview of this map'skeySet.Returns a
SequencedCollectionview of this map'svaluescollection.Methods declared in interface Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, valuesvoidRemoves all of the mappings from this map (optional operation).
default Vcompute(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) Attempts to compute a mapping for the specified key and its current mapped value, or
nullif there is no current mapping (optional operation).default VIf the specified key is not already associated with a value (or is mapped to
null), attempts to compute its value using the given mapping function and enters it into this map unlessnull(optional operation).default VIf the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value (optional operation).
booleanReturns
trueif this map contains a mapping for the specified key.booleanReturns
trueif this map maps one or more keys to the specified value.Returns a
Setview of the mappings contained in this map.booleanCompares the specified object with this map for equality.
default voidPerforms the given action for each entry in this map until all entries have been processed or the action throws an exception.
Returns the value to which the specified key is mapped, or
nullif this map contains no mapping for the key.default VReturns the value to which the specified key is mapped, or
defaultValueif this map contains no mapping for the key.intReturns the hash code value for this map.
booleanReturns
trueif this map contains no key-value mappings.Returns a
Setview of the keys contained in this map.default Vmerge(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction) If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value (optional operation).
Associates the specified value with the specified key in this map (optional operation).
voidputAll(Map<? extends K, ? extends V> m) Copies all of the mappings from the specified map to this map (optional operation).
default VIf the specified key is not already associated with a value (or is mapped to
null) associates it with the given value and returnsnull, else returns the current value (optional operation).Removes the mapping for a key from this map if it is present (optional operation).
default booleanRemoves the entry for the specified key only if it is currently mapped to the specified value (optional operation).
default VReplaces the entry for the specified key only if it is currently mapped to some value (optional operation).
default booleanreplace(K key, V oldValue, V newValue) Replaces the entry for the specified key only if currently mapped to the specified value (optional operation).
default voidReplaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception (optional operation).
intReturns the number of key-value mappings in this map.
Returns a
Collectionview of the values contained in this map.
-
Method Details
-
reversed
-
firstEntry
-
lastEntry
-
pollFirstEntry
-
pollLastEntry
-
putFirst
-
putLast
-
sequencedKeySet
-
sequencedValues
-
sequencedEntrySet
-