Package org.minidns.record
Class OPT
- java.lang.Object
-
- org.minidns.record.Data
-
- org.minidns.record.OPT
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<EdnsOption>
variablePart
-
Constructor Summary
Constructors Constructor Description OPT()
OPT(java.util.List<EdnsOption> variablePart)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Record.TYPE
getType()
The payload type.static OPT
parse(java.io.DataInputStream dis, int payloadLength)
protected void
serialize(java.io.DataOutputStream dos)
The internal method used to serialize Data subclasses.-
Methods inherited from class org.minidns.record.Data
equals, hashCode, length, toByteArray, toOutputStream, toOutputStream
-
-
-
-
Field Detail
-
variablePart
public final java.util.List<EdnsOption> variablePart
-
-
Constructor Detail
-
OPT
public OPT()
-
OPT
public OPT(java.util.List<EdnsOption> variablePart)
-
-
Method Detail
-
parse
public static OPT parse(java.io.DataInputStream dis, int payloadLength) throws java.io.IOException
- Throws:
java.io.IOException
-
getType
public Record.TYPE getType()
Description copied from class:Data
The payload type.
-
-