Package org.minidns.record
Class NSEC
- java.lang.Object
-
- org.minidns.record.Data
-
- org.minidns.record.NSEC
-
-
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
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Record.TYPE
getType()
The payload type.static NSEC
parse(DataInputStream dis, byte[] data, int length)
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 Detail
-
next
public final DnsName next
The next owner name that contains a authoritative data or a delegation point.
-
types
public final List<Record.TYPE> types
The RR types existing at the owner name.
-
-
Constructor Detail
-
NSEC
public NSEC(String next, List<Record.TYPE> types)
-
NSEC
public NSEC(String next, Record.TYPE... types)
-
NSEC
public NSEC(DnsName next, List<Record.TYPE> types)
-
-
Method Detail
-
parse
public static NSEC parse(DataInputStream dis, byte[] data, int length) throws IOException
- Throws:
IOException
-
getType
public Record.TYPE getType()
Description copied from class:Data
The payload type.
-
serialize
public void serialize(DataOutputStream dos) throws IOException
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.
-
-