Package com.gengoai
Class ParamMap.Parameter<T>
- java.lang.Object
-
- com.gengoai.ParamMap.Parameter<T>
-
- Type Parameters:
T
- the type parameter
- All Implemented Interfaces:
Serializable
public class ParamMap.Parameter<T> extends Object implements Serializable
Represents aParameterDef
and its value within aParamMap
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description ParameterDef<T>
param
The Parameter definition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description V
set(T value)
Sets the value of the parameter.T
value()
Gets the value of the parameter
-
-
-
Field Detail
-
param
public final ParameterDef<T> param
The Parameter definition.
-
-