name method

String name()

Gets the name of the value.

Implementation

String name() {
  switch (_value) {
    case 3:
      return 'DENY';
    case 6:
      return 'FATAL_TRUST_FAILURE';
    case 0:
      return 'INVALID';
    case 7:
      return 'OTHER_ERROR';
    case 5:
      return 'RECOVERABLE_TRUST_FAILURE';
    case 4:
      return 'UNSPECIFIED';
  }
  return _value.toString();
}