Uses of Class
org.minidns.record.Record.CLASS
Package | Description |
---|---|
org.minidns.dnsmessage | |
org.minidns.record |
-
Uses of Record.CLASS in org.minidns.dnsmessage
Fields in org.minidns.dnsmessage declared as Record.CLASS Modifier and Type Field Description Record.CLASS
Question. clazz
The question class (usually IN for Internet).Constructors in org.minidns.dnsmessage with parameters of type Record.CLASS Constructor Description Question(CharSequence name, Record.TYPE type, Record.CLASS clazz)
Create a dns question for the given name/type/class.Question(CharSequence name, Record.TYPE type, Record.CLASS clazz, boolean unicastQuery)
Create a dns question for the given name/type/class.Question(DnsName name, Record.TYPE type, Record.CLASS clazz)
Create a dns question for the given name/type/class.Question(DnsName name, Record.TYPE type, Record.CLASS clazz, boolean unicastQuery)
-
Uses of Record.CLASS in org.minidns.record
Fields in org.minidns.record declared as Record.CLASS Modifier and Type Field Description Record.CLASS
Record. clazz
The record class (usually CLASS.IN).Methods in org.minidns.record that return Record.CLASS Modifier and Type Method Description static Record.CLASS
Record.CLASS. getClass(int value)
Retrieve the symbolic DNS class for a binary class value.static Record.CLASS
Record.CLASS. valueOf(String name)
Returns the enum constant of this type with the specified name.static Record.CLASS[]
Record.CLASS. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.minidns.record with parameters of type Record.CLASS Constructor Description Record(String name, Record.TYPE type, Record.CLASS clazz, long ttl, D payloadData, boolean unicastQuery)
Record(DnsName name, Record.TYPE type, Record.CLASS clazz, long ttl, D payloadData, boolean unicastQuery)