Package burp.api.montoya.collaborator
Enum DnsQueryType
- java.lang.Object
-
- java.lang.Enum<DnsQueryType>
-
- burp.api.montoya.collaborator.DnsQueryType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DnsQueryType>
public enum DnsQueryType extends java.lang.Enum<DnsQueryType>
This enum represents Domain Name System (DNS) query types.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DnsQueryTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DnsQueryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
A
public static final DnsQueryType A
-
NS
public static final DnsQueryType NS
-
CNAME
public static final DnsQueryType CNAME
-
SOA
public static final DnsQueryType SOA
-
PTR
public static final DnsQueryType PTR
-
HINFO
public static final DnsQueryType HINFO
-
MX
public static final DnsQueryType MX
-
TXT
public static final DnsQueryType TXT
-
AAAA
public static final DnsQueryType AAAA
-
SRV
public static final DnsQueryType SRV
-
NAPTR
public static final DnsQueryType NAPTR
-
DS
public static final DnsQueryType DS
-
DNSKEY
public static final DnsQueryType DNSKEY
-
HTTPS
public static final DnsQueryType HTTPS
-
ALL
public static final DnsQueryType ALL
-
CAA
public static final DnsQueryType CAA
-
UNKNOWN
public static final DnsQueryType UNKNOWN
-
-
Method Detail
-
values
public static DnsQueryType[] 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 (DnsQueryType c : DnsQueryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DnsQueryType 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 namejava.lang.NullPointerException- if the argument is null
-
-