Package software.amazon.awssdk.core.util
Class DefaultSdkAutoConstructMap<K,V>
- java.lang.Object
- 
- software.amazon.awssdk.core.util.DefaultSdkAutoConstructMap<K,V>
 
- 
- Type Parameters:
- K- The key type.
- V- The value type.
 - All Implemented Interfaces:
- Serializable,- Map<K,V>,- SdkAutoConstructMap<K,V>
 
 public final class DefaultSdkAutoConstructMap<K,V> extends Object implements SdkAutoConstructMap<K,V>, Serializable Default implementation ofSdkAutoConstructMap.This is an empty, unmodifiable map. - See Also:
- Serialized Form
 
- 
- 
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 o)Vget(Object key)static <K,V>
 DefaultSdkAutoConstructMap<K,V>getInstance()inthashCode()booleanisEmpty()Set<K>keySet()Vput(K key, V value)voidputAll(Map<? extends K,? extends V> m)Vremove(Object key)intsize()StringtoString()Collection<V>values()- 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface java.util.Mapcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
 
- 
 
- 
- 
- 
Method Detail- 
getInstancepublic static <K,V> DefaultSdkAutoConstructMap<K,V> getInstance() 
 - 
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 o) 
 - 
hashCodepublic int hashCode() 
 
- 
 
-