name method

String name()

Gets the name of the value.

Implementation

String name() {
  switch (_value) {
    case 4:
      return 'SSL_DATE_INVALID';
    case 1:
      return 'SSL_EXPIRED';
    case 2:
      return 'SSL_IDMISMATCH';
    case 5:
      return 'SSL_INVALID';
    case 0:
      return 'SSL_NOTYETVALID';
    case 3:
      return 'SSL_UNTRUSTED';
  }
  return _value.toString();
}