findAll method
- String key
Search for all occurrences of a parameter identifier in a list.
Parameters
- IN key Parameter key as string
Returns
- The list of parameters. Is empty if there are no matches.
Throws
- An exception if it fails.
Implementation
ParameterList findAll(final String key) {
final OperationResult resultString = objectMethod(
pointerId,
'SearchableParameterList',
'findAll',
args: key,
);
return ParameterList.init(resultString['result'], 0);
}