toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case FaqFileFormat.csv:
      return 'CSV';
    case FaqFileFormat.csvWithHeader:
      return 'CSV_WITH_HEADER';
    case FaqFileFormat.json:
      return 'JSON';
  }
}