| Package | Description |
|---|---|
| org.minidns.dnsmessage | DNS message parsing and serialization. |
| org.minidns.record | DNS resource record types and implementations. |
| Modifier and Type | Field and Description |
|---|---|
Record.CLASS | Question.clazzThe 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.clazzThe 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)Create a new record. |
Record(String name,
Record.TYPE type,
Record.CLASS clazz,
long ttl,
D payloadData,
boolean unicastQuery)Create a new record. |