Enum IPv6DHCPMode
- java.lang.Object
-
- java.lang.Enum<IPv6DHCPMode>
-
- org.jclouds.openstack.neutron.v2.domain.IPv6DHCPMode
-
- All Implemented Interfaces:
Serializable
,Comparable<IPv6DHCPMode>
public enum IPv6DHCPMode extends Enum<IPv6DHCPMode>
Enumerates DHCP modes for UPv6
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DHCPV6_STATEFUL
DHCPV6_STATELESS
OFF
SLAAC
UNRECOGNIZED
Used by jclouds when the service returns an unknown value other than null.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IPv6DHCPMode
fromValue(String name)
String
toString()
static IPv6DHCPMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static IPv6DHCPMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFF
public static final IPv6DHCPMode OFF
-
SLAAC
public static final IPv6DHCPMode SLAAC
-
DHCPV6_STATEFUL
public static final IPv6DHCPMode DHCPV6_STATEFUL
-
DHCPV6_STATELESS
public static final IPv6DHCPMode DHCPV6_STATELESS
-
UNRECOGNIZED
public static final IPv6DHCPMode UNRECOGNIZED
Used by jclouds when the service returns an unknown value other than null.
-
-
Method Detail
-
values
public static IPv6DHCPMode[] 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 (IPv6DHCPMode c : IPv6DHCPMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IPv6DHCPMode 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<IPv6DHCPMode>
-
fromValue
public static IPv6DHCPMode fromValue(String name)
-
-