public interface IParameterMap
| Modifier and Type | Method and Description |
|---|---|
void |
put(String name,
Object value)
This method can be used to add a single value parameter.
|
void |
putCollection(String name,
List<Object> values)
This method can be used to add a collection of values or ranges.
|
void |
putRange(String name,
Object start,
Object end)
This method can be used to add a range parameter.
|
void put(String name, Object value)
name - The name of the parameter, without the @ sign.value - The value of the parameter.void putRange(String name, Object start, Object end)
name - The name of the parameter, without the @ sign.start - The start value of the parameter.end - The end value of the parameter.void putCollection(String name, List<Object> values)
name - The name of the parameter, without the @ sign.values - The collection of values or ranges for this parameter.