getPreferences method

SearchableParameterList getPreferences(
  1. 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

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);
}