Package groovy.lang
Class SpreadMap
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap
-
- groovy.lang.SpreadMap
-
- All Implemented Interfaces:
Serializable,Cloneable,Map
public class SpreadMap extends HashMap
Helper to turn a list with an even number of elements into a Map.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(SpreadMap that)booleanequals(Object that)inthashCode()Objectput(Object key, Object value)voidputAll(Map t)Objectremove(Object key)StringtoString()-
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, putIfAbsent, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
putAll
public void putAll(Map t)
-
equals
public boolean equals(Object that)
- Specified by:
equalsin interfaceMap- Overrides:
equalsin classAbstractMap
-
equals
public boolean equals(SpreadMap that)
-
hashCode
public int hashCode()
- Specified by:
hashCodein interfaceMap- Overrides:
hashCodein classAbstractMap
-
toString
public String toString()
- Overrides:
toStringin classAbstractMap- Returns:
- the string expression of
this
-
-