Package org.apache.cxf.message
Interface StringMap
- All Known Implementing Classes:
- AbstractWrappedMessage,- ExchangeImpl,- MessageImpl,- StringMapImpl,- XMLMessage
- 
Nested Class Summary
- 
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 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
- 
Method Details- 
getConvenience method for storing/retrieving typed objects from the map. equivalent to: (T)get(key.getName());- Parameters:
- key- the key
- Returns:
- the value
 
- 
putConvenience method for storing/retrieving typed objects from the map. equivalent to: put(key.getName(), value);- Parameters:
- key- the key
- value- the value
 
- 
removeConvenience method for removing typed objects from the map. equivalent to: (T)remove(key.getName());- Parameters:
- key- the key
 
 
-