toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case TextQualifier.doubleQuote:
      return 'DOUBLE_QUOTE';
    case TextQualifier.singleQuote:
      return 'SINGLE_QUOTE';
  }
}