Interface IncomingBindings
public interface IncomingBindings
This interface provides typed key-value-pair mappings for the incoming message process.
- Since:
- 10.0.138
-
Method Summary
Modifier and TypeMethodDescriptionReturns the string value to which the specified key is mapped, ornull
if this map contains no mapping for the key.Removes the mapping for a key if it is present
-
Method Details
-
getString
Returns the string value to which the specified key is mapped, ornull
if this map contains no mapping for the key.- Parameters:
key
- the key whose associated string value is to be returned- Returns:
- the value to which the specified key is mapped, or
null
if this map contains no mapping for the key - Throws:
ClassCastException
- if the key not is of type string- Since:
- 10.0.138
-
setString
- Parameters:
key
- key with which the specified value is to be associatedvalue
- string value to be associated with the specified key- Returns:
- this
- Throws:
ClassCastException
- if the class of the specified key or value prevents it from being stored.- Since:
- 10.0.138
-
remove
Removes the mapping for a key if it is present- Parameters:
key
- key whose mapping is to be removed from the map- Returns:
- the previous value associated with
key
, ornull
if there was no mapping forkey
. - Since:
- 10.0.138
-