Uses of Enum
io.netty.handler.codec.dns.DnsSection
Packages that use DnsSection
-
Uses of DnsSection in io.netty.handler.codec.dns
Methods in io.netty.handler.codec.dns that return DnsSectionModifier and TypeMethodDescriptionstatic DnsSection
Returns the enum constant of this type with the specified name.static DnsSection[]
DnsSection.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty.handler.codec.dns with parameters of type DnsSectionModifier and TypeMethodDescriptionAbstractDnsMessage.addRecord
(DnsSection section, int index, DnsRecord record) AbstractDnsMessage.addRecord
(DnsSection section, DnsRecord record) DatagramDnsQuery.addRecord
(DnsSection section, int index, DnsRecord record) DatagramDnsQuery.addRecord
(DnsSection section, DnsRecord record) DatagramDnsResponse.addRecord
(DnsSection section, int index, DnsRecord record) DatagramDnsResponse.addRecord
(DnsSection section, DnsRecord record) DefaultDnsQuery.addRecord
(DnsSection section, int index, DnsRecord record) DefaultDnsQuery.addRecord
(DnsSection section, DnsRecord record) DefaultDnsResponse.addRecord
(DnsSection section, int index, DnsRecord record) DefaultDnsResponse.addRecord
(DnsSection section, DnsRecord record) DnsMessage.addRecord
(DnsSection section, int index, DnsRecord record) Adds the specifiedrecord
at the specifiedindex
of the specifiedsection
of this DNS message.DnsMessage.addRecord
(DnsSection section, DnsRecord record) Adds the specifiedrecord
at the end of the specifiedsection
of this DNS message.DnsQuery.addRecord
(DnsSection section, int index, DnsRecord record) DnsQuery.addRecord
(DnsSection section, DnsRecord record) DnsResponse.addRecord
(DnsSection section, int index, DnsRecord record) DnsResponse.addRecord
(DnsSection section, DnsRecord record) private static void
DnsMessageUtil.appendRecords
(StringBuilder buf, DnsMessage message, DnsSection section) AbstractDnsMessage.clear
(DnsSection section) DatagramDnsQuery.clear
(DnsSection section) DatagramDnsResponse.clear
(DnsSection section) DefaultDnsQuery.clear
(DnsSection section) DefaultDnsResponse.clear
(DnsSection section) DnsMessage.clear
(DnsSection section) Removes all the records in the specifiedsection
of this DNS message.DnsQuery.clear
(DnsSection section) DnsResponse.clear
(DnsSection section) int
AbstractDnsMessage.count
(DnsSection section) int
DnsMessage.count
(DnsSection section) Returns the number of records in the specifiedsection
of this DNS message.private static void
DnsMessageUtil.decodeRecords
(DnsRecordDecoder decoder, DnsQuery query, DnsSection section, ByteBuf buf, int count) private boolean
DnsResponseDecoder.decodeRecords
(DnsResponse response, DnsSection section, ByteBuf buf, int count) private static void
DnsMessageUtil.encodeRecords
(DnsRecordEncoder encoder, DnsResponse response, DnsSection section, ByteBuf buf) private void
DnsQueryEncoder.encodeRecords
(DnsQuery query, DnsSection section, ByteBuf buf) <T extends DnsRecord>
TAbstractDnsMessage.recordAt
(DnsSection section) <T extends DnsRecord>
TAbstractDnsMessage.recordAt
(DnsSection section, int index) <T extends DnsRecord>
TDnsMessage.recordAt
(DnsSection section) Returns the first record in the specifiedsection
of this DNS message.<T extends DnsRecord>
TDnsMessage.recordAt
(DnsSection section, int index) Returns the record at the specifiedindex
of the specifiedsection
of this DNS message.<T extends DnsRecord>
TAbstractDnsMessage.removeRecord
(DnsSection section, int index) <T extends DnsRecord>
TDnsMessage.removeRecord
(DnsSection section, int index) Removes the record at the specifiedindex
of the specifiedsection
from this DNS message.private static int
AbstractDnsMessage.sectionOrdinal
(DnsSection section) <T extends DnsRecord>
TAbstractDnsMessage.setRecord
(DnsSection section, int index, DnsRecord record) AbstractDnsMessage.setRecord
(DnsSection section, DnsRecord record) DatagramDnsQuery.setRecord
(DnsSection section, DnsRecord record) DatagramDnsResponse.setRecord
(DnsSection section, DnsRecord record) DefaultDnsQuery.setRecord
(DnsSection section, DnsRecord record) DefaultDnsResponse.setRecord
(DnsSection section, DnsRecord record) <T extends DnsRecord>
TDnsMessage.setRecord
(DnsSection section, int index, DnsRecord record) Sets the specifiedrecord
at the specifiedindex
of the specifiedsection
of this DNS message.DnsMessage.setRecord
(DnsSection section, DnsRecord record) Sets the specifiedsection
of this DNS message to the specifiedrecord
, making it a single-record section.DnsQuery.setRecord
(DnsSection section, DnsRecord record) DnsResponse.setRecord
(DnsSection section, DnsRecord record)