Uses of Class
de.measite.minidns.Record.TYPE
-
Packages that use Record.TYPE Package Description de.measite.minidns de.measite.minidns.record -
-
Uses of Record.TYPE in de.measite.minidns
Fields in de.measite.minidns declared as Record.TYPE Modifier and Type Field Description private Record.TYPE
Question. type
The question type (e.g.protected Record.TYPE
Record. type
The type (and payload type) of this record.Fields in de.measite.minidns with type parameters of type Record.TYPE Modifier and Type Field Description private static java.util.HashMap<java.lang.Integer,Record.TYPE>
Record.TYPE. INVERSE_LUT
Internal lookup table to map values to types.Methods in de.measite.minidns that return Record.TYPE Modifier and Type Method Description Record.TYPE
Question. getType()
Retrieve the type of this question.static Record.TYPE
Record.TYPE. getType(int value)
Retrieve the symbolic type of the binary value.static Record.TYPE
Record.TYPE. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Record.TYPE[]
Record.TYPE. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.measite.minidns with parameters of type Record.TYPE Modifier and Type Method Description DNSMessage
Client. query(java.lang.String name, Record.TYPE type)
Query the system nameservers for a single entry of the class IN (which is used for MX, SRV, A, AAAA and most other RRs).DNSMessage
Client. query(java.lang.String name, Record.TYPE type, Record.CLASS clazz)
Query the system nameservers for a single entry of any class.DNSMessage
Client. query(java.lang.String name, Record.TYPE type, Record.CLASS clazz, java.lang.String host)
Query a nameserver for a single entry.DNSMessage
Client. query(java.lang.String name, Record.TYPE type, Record.CLASS clazz, java.lang.String host, int port)
Query a nameserver for a single entry.Constructors in de.measite.minidns with parameters of type Record.TYPE Constructor Description Question(java.lang.String name, Record.TYPE type)
Create a dns question for the given name/type/IN (internet class).Question(java.lang.String name, Record.TYPE type, Record.CLASS clazz)
Create a dns question for the given name/type/class.Question(java.lang.String name, Record.TYPE type, Record.CLASS clazz, boolean unicastQuery)
Create a dns question for the given name/type/class. -
Uses of Record.TYPE in de.measite.minidns.record
Methods in de.measite.minidns.record that return Record.TYPE Modifier and Type Method Description Record.TYPE
A. getType()
Record.TYPE
AAAA. getType()
Record.TYPE
CNAME. getType()
Record.TYPE
Data. getType()
The payload type.Record.TYPE
MX. getType()
Record.TYPE
NS. getType()
Record.TYPE
PTR. getType()
Record.TYPE
SRV. getType()
Record.TYPE
TXT. getType()
-