| org.apache.cxf.message.StringMap
All known Subclasses: org.apache.cxf.message.StringMapImpl,
Method Summary | |
T | get(Class<T> key) Convenience method for storing/retrieving typed objects from the map. | void | put(Class<T> key, T value) Convenience method for storing/retrieving typed objects from the map. |
get | T get(Class<T> key)(Code) | | Convenience method for storing/retrieving typed objects from the map.
equivalent to: (T)get(key.getName());
Parameters: key - the key the value |
put | void put(Class<T> key, T value)(Code) | | Convenience method for storing/retrieving typed objects from the map.
equivalent to: put(key.getName(), value);
Parameters: key - the key Parameters: value - the value |
|
|