Package | Description |
---|---|
org.minidns | |
org.minidns.dnsmessage | |
org.minidns.record |
Modifier and Type | Field and Description |
---|---|
Record.CLASS |
RrSet.clazz |
Modifier and Type | Method and Description |
---|---|
DnsMessage |
AbstractDnsClient.query(String name,
Record.TYPE type,
Record.CLASS clazz)
Query the system nameservers for a single entry of any class.
|
DnsMessage |
AbstractDnsClient.query(String name,
Record.TYPE type,
Record.CLASS clazz,
InetAddress address)
Query a nameserver for a single entry.
|
DnsMessage |
AbstractDnsClient.query(String name,
Record.TYPE type,
Record.CLASS clazz,
InetAddress address,
int port)
Query a nameserver for a single entry.
|
Modifier and Type | Field and Description |
---|---|
Record.CLASS |
Question.clazz
The question class (usually IN for Internet).
|
Constructor and 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) |
Modifier and Type | Field and Description |
---|---|
Record.CLASS |
Record.clazz
The record class (usually CLASS.IN).
|
Modifier and Type | Method and 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.
|
Constructor and Description |
---|
Record(DnsName name,
Record.TYPE type,
Record.CLASS clazz,
long ttl,
D payloadData,
boolean unicastQuery) |
Record(String name,
Record.TYPE type,
Record.CLASS clazz,
long ttl,
D payloadData,
boolean unicastQuery) |