Package org.apache.cxf.message
Interface StringMap
- All Known Implementing Classes:
AbstractWrappedMessage
,ExchangeImpl
,MessageImpl
,StringMapImpl
,XMLMessage
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescription<T> T
Convenience method for storing/retrieving typed objects from the map.<T> void
Convenience method for storing/retrieving typed objects from the map.<T> T
Convenience method for removing typed objects from the map.Methods inherited from interface java.util.Map
clear, 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
-
get
Convenience method for storing/retrieving typed objects from the map. equivalent to: (T)get(key.getName());- Parameters:
key
- the key- Returns:
- the value
-
put
Convenience method for storing/retrieving typed objects from the map. equivalent to: put(key.getName(), value);- Parameters:
key
- the keyvalue
- the value
-
remove
Convenience method for removing typed objects from the map. equivalent to: (T)remove(key.getName());- Parameters:
key
- the key
-