public static enum Types.IpConfigurationMode extends Enum<Types.IpConfigurationMode>
Enum Constant and Description |
---|
DHCP
Acquire an IP address by DHCP
|
NONE
Do not acquire an IP address
|
STATIC
Static IP address configuration
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
static Types.IpConfigurationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Types.IpConfigurationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.IpConfigurationMode UNRECOGNIZED
public static final Types.IpConfigurationMode NONE
public static final Types.IpConfigurationMode DHCP
public static final Types.IpConfigurationMode STATIC
public static Types.IpConfigurationMode[] values()
for (Types.IpConfigurationMode c : Types.IpConfigurationMode.values()) System.out.println(c);
public static Types.IpConfigurationMode 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