Interface IIndexedParameters
-
- All Known Implementing Classes:
PageParameters
public interface IIndexedParameters
Container for parameters that are identified by their index- Author:
- igor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IIndexedParameters
clearIndexed()
Removes all indexed parameters.StringValue
get(int index)
IIndexedParameters
remove(int index)
Removes indexed parameter on given indexIIndexedParameters
set(int index, Object object)
Sets the indexed parameter on given index
-
-
-
Method Detail
-
set
IIndexedParameters set(int index, Object object)
Sets the indexed parameter on given index- Parameters:
index
- The position of the parameterobject
- The parameter at this position- Returns:
- this instance, for chaining
-
get
StringValue get(int index)
- Parameters:
index
- The position of the parameter- Returns:
- indexed parameter on given index
-
remove
IIndexedParameters remove(int index)
Removes indexed parameter on given index- Parameters:
index
- The position of the parameter- Returns:
- this instance, for chaining
-
clearIndexed
IIndexedParameters clearIndexed()
Removes all indexed parameters.- Returns:
- this instance, for chaining
-
-