Package org.minidns
Enum AbstractDnsClient.IpVersionSetting
- java.lang.Object
-
- java.lang.Enum<AbstractDnsClient.IpVersionSetting>
-
- org.minidns.AbstractDnsClient.IpVersionSetting
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractDnsClient.IpVersionSetting>
- Enclosing class:
- AbstractDnsClient
public static enum AbstractDnsClient.IpVersionSetting extends Enum<AbstractDnsClient.IpVersionSetting>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractDnsClient.IpVersionSetting
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractDnsClient.IpVersionSetting[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
v4only
public static final AbstractDnsClient.IpVersionSetting v4only
-
v6only
public static final AbstractDnsClient.IpVersionSetting v6only
-
v4v6
public static final AbstractDnsClient.IpVersionSetting v4v6
-
v6v4
public static final AbstractDnsClient.IpVersionSetting v6v4
-
-
Method Detail
-
values
public static AbstractDnsClient.IpVersionSetting[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractDnsClient.IpVersionSetting c : AbstractDnsClient.IpVersionSetting.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractDnsClient.IpVersionSetting valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-