Package groovy.lang
Class MapWithDefault<K,V>
- java.lang.Object
- 
- groovy.lang.MapWithDefault<K,V>
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<K,V>>entrySet()booleanequals(Object obj)Vget(Object key)inthashCode()booleanisEmpty()Set<K>keySet()static <K,V>
 Map<K,V>newInstance(Map<K,V> m, Closure initClosure)Vput(K key, V value)voidputAll(Map<? extends K,? extends V> m)Vremove(Object key)intsize()Collection<V>values()- 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.util.Mapcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
 
- 
 
- 
- 
- 
Method Detail- 
containsKeypublic boolean containsKey(Object key) - Specified by:
- containsKeyin interface- Map<K,V>
 
 - 
containsValuepublic boolean containsValue(Object value) - Specified by:
- containsValuein interface- Map<K,V>
 
 - 
equalspublic boolean equals(Object obj) 
 
- 
 
-