public static enum AbstractDnsDataSource.QueryMode extends java.lang.Enum<AbstractDnsDataSource.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 AbstractDnsDataSource.QueryMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractDnsDataSource.QueryMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractDnsDataSource.QueryMode dontCare
public static final AbstractDnsDataSource.QueryMode udpTcp
public static final AbstractDnsDataSource.QueryMode tcp
public static AbstractDnsDataSource.QueryMode[] values()
for (AbstractDnsDataSource.QueryMode c : AbstractDnsDataSource.QueryMode.values()) System.out.println(c);
public static AbstractDnsDataSource.QueryMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null