com.verisign.getdns

Enum GetDNSReturn

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<GetDNSReturn>


    public enum GetDNSReturn
    extends java.lang.Enum<GetDNSReturn>

    This contains possible values for response status code.

    • Enum Constant Detail

      • GETDNS_DNSSEC_BOGUS

        public static final GetDNSReturn GETDNS_DNSSEC_BOGUS
      • GETDNS_DNSSEC_INDETERMINATE

        public static final GetDNSReturn GETDNS_DNSSEC_INDETERMINATE
      • GETDNS_DNSSEC_INSECURE

        public static final GetDNSReturn GETDNS_DNSSEC_INSECURE
      • GETDNS_DNSSEC_NOT_PERFORMED

        public static final GetDNSReturn GETDNS_DNSSEC_NOT_PERFORMED
      • GETDNS_DNSSEC_SECURE

        public static final GetDNSReturn GETDNS_DNSSEC_SECURE
      • GETDNS_RESPSTATUS_ALL_BOGUS_ANSWERS

        public static final GetDNSReturn GETDNS_RESPSTATUS_ALL_BOGUS_ANSWERS
      • GETDNS_RESPSTATUS_ALL_TIMEOUT

        public static final GetDNSReturn GETDNS_RESPSTATUS_ALL_TIMEOUT
      • GETDNS_RESPSTATUS_GOOD

        public static final GetDNSReturn GETDNS_RESPSTATUS_GOOD
      • GETDNS_RESPSTATUS_NO_NAME

        public static final GetDNSReturn GETDNS_RESPSTATUS_NO_NAME
      • GETDNS_RESPSTATUS_NO_SECURE_ANSWERS

        public static final GetDNSReturn GETDNS_RESPSTATUS_NO_SECURE_ANSWERS
      • GETDNS_RETURN_BAD_CONTEXT

        public static final GetDNSReturn GETDNS_RETURN_BAD_CONTEXT
      • GETDNS_RETURN_BAD_DOMAIN_NAME

        public static final GetDNSReturn GETDNS_RETURN_BAD_DOMAIN_NAME
      • GETDNS_RETURN_CONTEXT_UPDATE_FAIL

        public static final GetDNSReturn GETDNS_RETURN_CONTEXT_UPDATE_FAIL
      • GETDNS_RETURN_DNSSEC_WITH_STUB_DISALLOWED

        public static final GetDNSReturn GETDNS_RETURN_DNSSEC_WITH_STUB_DISALLOWED
      • GETDNS_RETURN_EXTENSION_MISFORMAT

        public static final GetDNSReturn GETDNS_RETURN_EXTENSION_MISFORMAT
      • GETDNS_RETURN_GENERIC_ERROR

        public static final GetDNSReturn GETDNS_RETURN_GENERIC_ERROR
      • GETDNS_RETURN_GOOD

        public static final GetDNSReturn GETDNS_RETURN_GOOD
      • GETDNS_RETURN_INVALID_PARAMETER

        public static final GetDNSReturn GETDNS_RETURN_INVALID_PARAMETER
      • GETDNS_RETURN_MEMORY_ERROR

        public static final GetDNSReturn GETDNS_RETURN_MEMORY_ERROR
      • GETDNS_RETURN_NO_SUCH_DICT_NAME

        public static final GetDNSReturn GETDNS_RETURN_NO_SUCH_DICT_NAME
      • GETDNS_RETURN_NO_SUCH_EXTENSION

        public static final GetDNSReturn GETDNS_RETURN_NO_SUCH_EXTENSION
      • GETDNS_RETURN_NO_SUCH_LIST_ITEM

        public static final GetDNSReturn GETDNS_RETURN_NO_SUCH_LIST_ITEM
      • GETDNS_RETURN_UNKNOWN_TRANSACTION

        public static final GetDNSReturn GETDNS_RETURN_UNKNOWN_TRANSACTION
      • GETDNS_RETURN_WRONG_TYPE_REQUESTED

        public static final GetDNSReturn GETDNS_RETURN_WRONG_TYPE_REQUESTED
      • GETDNS_UNKNOWN

        public static final GetDNSReturn GETDNS_UNKNOWN
    • Method Detail

      • getValue

        public int getValue()
      • valueOf

        public static GetDNSReturn valueOf(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • values

        public static GetDNSReturn[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (GetDNSReturn c : GetDNSReturn.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared