Package io.netty.handler.codec.dns
Enum DnsSection
- java.lang.Object
-
- java.lang.Enum<DnsSection>
-
- io.netty.handler.codec.dns.DnsSection
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DnsSection>
public enum DnsSection extends java.lang.Enum<DnsSection>
Represents a section of aDnsMessage.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDITIONALThe section that contains the additionalDnsRecords.ANSWERThe section that contains the answerDnsRecords.AUTHORITYThe section that contains the authorityDnsRecords.QUESTIONThe section that containsDnsQuestions.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DnsSectionvalueOf(java.lang.String name)Returns 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 Detail
-
QUESTION
public static final DnsSection QUESTION
The section that containsDnsQuestions.
-
ANSWER
public static final DnsSection ANSWER
The section that contains the answerDnsRecords.
-
AUTHORITY
public static final DnsSection AUTHORITY
The section that contains the authorityDnsRecords.
-
ADDITIONAL
public static final DnsSection ADDITIONAL
The section that contains the additionalDnsRecords.
-
-
Method Detail
-
values
public static DnsSection[] 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 (DnsSection c : DnsSection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DnsSection 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
-
-