toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ModelInputDataFormat.textCsv:
      return 'TEXT_CSV';
    case ModelInputDataFormat.applicationJson:
      return 'APPLICATION_JSON';
  }
}