name method

String name()

Gets the name of the value.

Implementation

String name() {
  switch (_value) {
    case 'mht':
      return 'MHT';
    case 'webarchive':
      return 'WEBARCHIVE';
  }
  return _value.toString();
}