getPreferences method
- DataType type
Provide access to the current configuration specified to that data type.
Parameters
- IN type The data type for which the preferences will be returned.
Returns
- The configuration as SearchableParameterList.
Throws
- An exception if it fails
Implementation
SearchableParameterList getPreferences(final DataType type) {
final OperationResult resultString = objectMethod(
_pointerId,
'DataSourceContainer',
'getPreferences',
args: type.id,
);
return SearchableParameterList.init(resultString['result'], 0);
}