Package org.minidns.record
Class TXT
- java.lang.Object
-
- org.minidns.record.Data
-
- org.minidns.record.TXT
-
-
Constructor Summary
Constructors Constructor Description TXT(byte[] blob)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getBlob()List<String>getCharacterStrings()List<byte[]>getExtents()StringgetText()Record.TYPEgetType()The payload type.static TXTparse(DataInputStream dis, int length)voidserialize(DataOutputStream dos)The internal method used to serialize Data subclasses.StringtoString()-
Methods inherited from class org.minidns.record.Data
equals, hashCode, length, toByteArray, toOutputStream, toOutputStream
-
-
-
-
Constructor Detail
-
TXT
public TXT(byte[] blob)
-
-
Method Detail
-
parse
public static TXT parse(DataInputStream dis, int length) throws IOException
- Throws:
IOException
-
getBlob
public byte[] getBlob()
-
getCharacterStrings
public List<String> getCharacterStrings()
-
getExtents
public List<byte[]> getExtents()
-
serialize
public void serialize(DataOutputStream dos) throws IOException
Description copied from class:DataThe internal method used to serialize Data subclasses.- Specified by:
serializein classData- Parameters:
dos- the output stream to serialize to.- Throws:
IOException- if an I/O error occurs.
-
getType
public Record.TYPE getType()
Description copied from class:DataThe payload type.
-
-