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 DnsNamenextThe next owner name that contains a authoritative data or a delegation point.java.util.List<Record.TYPE>typesThe RR types existing at the owner name. 
- 
Constructor Summary
Constructors Constructor Description NSEC(java.lang.String next, java.util.List<Record.TYPE> types)NSEC(java.lang.String next, Record.TYPE... types)NSEC(DnsName next, java.util.List<Record.TYPE> types) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Record.TYPEgetType()The payload type.static NSECparse(java.io.DataInputStream dis, byte[] data, int length)voidserialize(java.io.DataOutputStream dos)The internal method used to serialize Data subclasses.java.lang.StringtoString()- 
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 java.util.List<Record.TYPE> types
The RR types existing at the owner name. 
 - 
 
- 
Constructor Detail
- 
NSEC
public NSEC(java.lang.String next, java.util.List<Record.TYPE> types)
 
- 
NSEC
public NSEC(java.lang.String next, Record.TYPE... types)
 
- 
NSEC
public NSEC(DnsName next, java.util.List<Record.TYPE> types)
 
 - 
 
- 
Method Detail
- 
parse
public static NSEC parse(java.io.DataInputStream dis, byte[] data, int length) throws java.io.IOException
- Throws:
 java.io.IOException
 
- 
getType
public Record.TYPE getType()
Description copied from class:DataThe payload type. 
- 
serialize
public void serialize(java.io.DataOutputStream dos) throws java.io.IOException
Description copied from class:DataThe internal method used to serialize Data subclasses. 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
 - 
 
 -