public static enum DnsDataSource.QueryMode extends Enum<DnsDataSource.QueryMode>
Enum Constant and Description |
---|
dontCare
Perform the query mode that is assumed "best" for that particular case.
|
tcp
Always use only TCP when querying DNS servers.
|
udpTcp
Try UDP first, and if the result is bigger than the maximum UDP payload size, or if something else goes wrong, fallback to TCP.
|
Modifier and Type | Method and Description |
---|---|
static DnsDataSource.QueryMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DnsDataSource.QueryMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DnsDataSource.QueryMode dontCare
public static final DnsDataSource.QueryMode udpTcp
public static final DnsDataSource.QueryMode tcp
public static DnsDataSource.QueryMode[] values()
for (DnsDataSource.QueryMode c : DnsDataSource.QueryMode.values()) System.out.println(c);
public static DnsDataSource.QueryMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null