Package org.apache.cxf.message
Class StringMapImpl
- Direct Known Subclasses:
- MessageImpl
A variation on HashMap which allows lookup by Class, via the string
 returned by 
Class.getName().- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class java.util.AbstractMapAbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> 
- 
Constructor SummaryConstructorsConstructorDescriptionStringMapImpl(int initialSize, float factor) StringMapImpl(Map<String, Object> i) 
- 
Method SummaryModifier and TypeMethodDescription<T> TConvenience method for storing/retrieving typed objects from the map.<T> voidConvenience method for storing/retrieving typed objects from the map.<T> TConvenience method for removing typed objects from the map.Methods inherited from class java.util.HashMapclear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, valuesMethods inherited from class java.util.AbstractMapequals, hashCode, toStringMethods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Mapclear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
- 
Constructor Details- 
StringMapImplpublic StringMapImpl()
- 
StringMapImplpublic StringMapImpl(int initialSize, float factor) 
- 
StringMapImpl
 
- 
- 
Method Details- 
getDescription copied from interface:StringMapConvenience method for storing/retrieving typed objects from the map. equivalent to: (T)get(key.getName());
- 
putDescription copied from interface:StringMapConvenience method for storing/retrieving typed objects from the map. equivalent to: put(key.getName(), value);
- 
removeDescription copied from interface:StringMapConvenience method for removing typed objects from the map. equivalent to: (T)remove(key.getName());
 
-