Package org.xbill.DNS

Class EmptyRecord

java.lang.Object
org.xbill.DNS.Record
org.xbill.DNS.EmptyRecord
All Implemented Interfaces:
Serializable, Cloneable, Comparable<Record>

class EmptyRecord extends Record
A class implementing Records with no data; that is, records used in the question section of messages and meta-records in dynamic update.
  • Constructor Details

    • EmptyRecord

      EmptyRecord()
  • Method Details

    • rrFromWire

      protected void rrFromWire(DNSInput in)
      Description copied from class: Record
      Converts the type-specific RR to wire format - must be overridden
      Specified by:
      rrFromWire in class Record
    • rdataFromString

      protected void rdataFromString(Tokenizer st, Name origin)
      Description copied from class: Record
      Converts the text format of an RR to the internal format - must be overriden
      Specified by:
      rdataFromString in class Record
    • rrToString

      protected String rrToString()
      Description copied from class: Record
      Converts the type-specific RR to text format - must be overridden.
      Specified by:
      rrToString in class Record
    • rrToWire

      protected void rrToWire(DNSOutput out, Compression c, boolean canonical)
      Description copied from class: Record
      Converts the type-specific RR to wire format - must be overridden.
      Specified by:
      rrToWire in class Record