Enum DnsSection
- All Implemented Interfaces:
Serializable, Comparable<DnsSection>
Represents a section of a
DnsMessage.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe section that contains the additionalDnsRecords.The section that contains the answerDnsRecords.The section that contains the authorityDnsRecords.The section that containsDnsQuestions. -
Method Summary
Modifier and TypeMethodDescriptionstatic DnsSectionReturns the enum constant of this type with the specified name.static DnsSection[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
QUESTION
The section that containsDnsQuestions. -
ANSWER
The section that contains the answerDnsRecords. -
AUTHORITY
The section that contains the authorityDnsRecords. -
ADDITIONAL
The section that contains the additionalDnsRecords.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-