public interface ParameterList extends Iterable<com.tangosol.config.expression.Parameter>
Parameter,
ParameterResolver| Modifier and Type | Method and Description |
|---|---|
void |
add(com.tangosol.config.expression.Parameter parameter)
Adds a
Parameter to the end of the ParameterList or replaces an existing Parameter
in the ParameterList. |
boolean |
isEmpty()
Determines if there are any
Parameters in the ParameterList. |
int |
size()
Obtains the number of
Parameters in the ParameterList. |
forEach, iterator, spliteratorboolean isEmpty()
Parameters in the ParameterList.true if there are Parameters, false otherwiseint size()
Parameters in the ParameterList.Parametersvoid add(com.tangosol.config.expression.Parameter parameter)
Parameter to the end of the ParameterList or replaces an existing Parameter
in the ParameterList.
Should a Parameter with the same name as the specified Parameter already exist in the list, the
specified Parameter will replace the existing Parameter in the list.
parameter - the Parameter to add or replace