find method
- String key
Search for first occurrence of a parameter identifier and get the name of the parameter.
Parameters
- IN key Parameter key as string
Returns
- The name of the parameter if found. Empty string otherwise.
Throws
- An exception if it fails.
Implementation
String find(final String key) {
final OperationResult resultString = objectMethod(
pointerId,
'SearchableParameterList',
'find',
args: key,
);
return resultString['result'];
}