getDataTypeDescription method
- DataType type
The data type description
If data source produces such a data type then it returns a description, otherwise it returns an empty string.
Parameters
- IN type The data type for which the description is requested.
Returns
- String The description of the data type.
Throws
- An exception if it fails
Implementation
String getDataTypeDescription(final DataType type) {
final OperationResult resultString = objectMethod(
_pointerId,
'DataSourceContainer',
'getDataTypeDescription',
args: type.id,
);
return resultString['result'];
}