Package org.minidns.record
Class NSEC
java.lang.Object
org.minidns.record.Data
org.minidns.record.NSEC
NSEC record payload.
-
Field Summary
Modifier and TypeFieldDescriptionfinal DnsName
The next owner name that contains a authoritative data or a delegation point.final List
<Record.TYPE> The RR types existing at the owner name. -
Constructor Summary
ConstructorDescriptionNSEC
(String next, List<Record.TYPE> types) NSEC
(String next, Record.TYPE... types) NSEC
(DnsName next, List<Record.TYPE> types) -
Method Summary
Modifier and TypeMethodDescriptiongetType()
The payload type.static NSEC
parse
(DataInputStream dis, byte[] data, int length) void
The internal method used to serialize Data subclasses.toString()
Methods inherited from class org.minidns.record.Data
equals, hashCode, length, toByteArray, toOutputStream, toOutputStream
-
Field Details
-
next
The next owner name that contains a authoritative data or a delegation point. -
types
The RR types existing at the owner name.
-
-
Constructor Details
-
NSEC
-
NSEC
-
NSEC
-
-
Method Details
-
parse
- Throws:
IOException
-
getType
Description copied from class:Data
The payload type. -
serialize
Description copied from class:Data
The internal method used to serialize Data subclasses.- Specified by:
serialize
in classData
- Parameters:
dos
- the output stream to serialize to.- Throws:
IOException
- if an I/O error occurs.
-
toString
-