Interface ParameterMap
- All Superinterfaces:
Serializable
An object that maps
Parameter
to values.
Each parameter must have an unique identifier represented by Parameter.getName()
.- Since:
- 5.1.19
-
Method Summary
-
Method Details
-
put
Associates the specified value with the specifiedParameter
in this map.- Type Parameters:
T
- Value type.- Parameters:
parameter
- Parameter with which the specified value is to be associatedvalue
- Value to be associated with the specified key- Since:
- 5.1.19
-
get
Returns the value to which the specified key is mapped, ornull
if this map contains no mapping for the key.- Type Parameters:
T
- Value type.- Parameters:
parameter
- The parameter whose associated 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. - Since:
- 5.1.19
-