toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ReportFormat.textORcsv:
      return 'textORcsv';
    case ReportFormat.parquet:
      return 'Parquet';
  }
}