Package org.minidns.record
Class NSEC
java.lang.Object
org.minidns.record.Data
org.minidns.record.NSEC
public class NSEC extends Data
NSEC record payload.
-
Field Summary
Fields Modifier and Type Field Description DnsName
next
The next owner name that contains a authoritative data or a delegation point.List<Record.TYPE>
types
The RR types existing at the owner name. -
Constructor Summary
Constructors Constructor Description NSEC(String next, List<Record.TYPE> types)
NSEC(String next, Record.TYPE... types)
NSEC(DnsName next, List<Record.TYPE> types)
-
Method Summary
Modifier and Type Method Description (package private) static byte[]
createTypeBitMap(List<Record.TYPE> types)
Record.TYPE
getType()
The payload type.static NSEC
parse(DataInputStream dis, byte[] data, int length)
(package private) static List<Record.TYPE>
readTypeBitMap(byte[] typeBitmap)
void
serialize(DataOutputStream dos)
The internal method used to serialize Data subclasses.String
toString()
Methods inherited from class org.minidns.record.Data
equals, hashCode, length, toByteArray, toOutputStream, toOutputStream
-
Field Details
-
Constructor Details
-
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
-
createTypeBitMap
-
readTypeBitMap
- Throws:
IOException
-