name method

String name()

Gets the name of the value.

Implementation

String name() {
  switch (_value) {
    case 3:
      return 'COMPLETE';
    case 0:
      return 'DEFAULT';
    case 1:
      return 'HTML_ONLY';
    case 2:
      return 'SINGLE_FILE';
  }
  return _value.toString();
}