Package de.measite.minidns.record
Class AAAA
- java.lang.Object
-
- de.measite.minidns.record.AAAA
-
-
Field Summary
Fields Modifier and Type Field Description private byte[]
ip
The ipv6 address.
-
Constructor Summary
Constructors Constructor Description AAAA()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Record.TYPE
getType()
The payload type.void
parse(java.io.DataInputStream dis, byte[] data, int length)
Parse this payload.byte[]
toByteArray()
Binary representation of this payload.java.lang.String
toString()
-
-
-
Method Detail
-
getType
public Record.TYPE getType()
Description copied from interface:Data
The payload type.
-
toByteArray
public byte[] toByteArray()
Description copied from interface:Data
Binary representation of this payload.- Specified by:
toByteArray
in interfaceData
- Returns:
- The binary representation of this payload.
-
parse
public void parse(java.io.DataInputStream dis, byte[] data, int length) throws java.io.IOException
Description copied from interface:Data
Parse this payload.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-