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
Parameter s in the ParameterList . |
int |
size()
Obtains the number of
Parameter s in the ParameterList . |
forEach, iterator, spliterator
boolean isEmpty()
Parameter
s in the ParameterList
.true
if there are Parameter
s, false
otherwiseint size()
Parameter
s in the ParameterList
.Parameter
svoid 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