Package org.minidns.record
Class MX
- java.lang.Object
- 
- org.minidns.record.Data
- 
- org.minidns.record.MX
 
 
- 
 public class MX extends Data MX record payload (mail service pointer).
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Record.TYPEgetType()The payload type.static MXparse(DataInputStream dis, byte[] data)voidserialize(DataOutputStream dos)The internal method used to serialize Data subclasses.StringtoString()- 
Methods inherited from class org.minidns.record.Dataequals, hashCode, length, toByteArray, toOutputStream, toOutputStream
 
- 
 
- 
- 
- 
Field Detail- 
prioritypublic final int priority The priority of this service. Lower values mean higher priority.
 - 
targetpublic final DnsName target The name of the target server.
 - 
name@Deprecated public final DnsName name Deprecated.usetargetinstead.The name of the target server.
 
- 
 - 
Method Detail- 
parsepublic static MX parse(DataInputStream dis, byte[] data) throws IOException - Throws:
- IOException
 
 - 
serializepublic void serialize(DataOutputStream dos) throws IOException Description copied from class:DataThe internal method used to serialize Data subclasses.- Specified by:
- serializein class- Data
- Parameters:
- dos- the output stream to serialize to.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
getTypepublic Record.TYPE getType() Description copied from class:DataThe payload type.
 
- 
 
-