public interface ModifiableParametric extends Parametric
Parametric
interface that support modifications.Modifier and Type | Method and Description |
---|---|
java.lang.Object |
removeParameter(java.lang.String name)
Removes an additional parameter with the given
name . |
java.lang.Object |
setParameter(java.lang.String name,
java.lang.Object value)
Set an additional parameter with the given
name to the given value . |
containsParameter, getParameter, getParameter, getParameter, getParameterCount, getParameterMap, getParameterNames, getRequiredParameter, getRequiredParameter
java.lang.Object setParameter(java.lang.String name, java.lang.Object value)
name
to the given value
.
Note that the previous value is replaced with the new one.name
- the name of the additional parameter to setvalue
- the new value for the parametername
or null if it was not setjava.lang.Object removeParameter(java.lang.String name)
name
.name
- the name of the additional parameter to removename
that was removed or null if it was not set