toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case BusinessReportFormat.csv:
      return 'CSV';
    case BusinessReportFormat.csvZip:
      return 'CSV_ZIP';
  }
}