Package org.openstack4j.model.network
Enum Ipv6RaMode
- java.lang.Object
-
- java.lang.Enum<Ipv6RaMode>
-
- org.openstack4j.model.network.Ipv6RaMode
-
- All Implemented Interfaces:
Serializable,Comparable<Ipv6RaMode>
public enum Ipv6RaMode extends Enum<Ipv6RaMode>
The IPv6 router advertisement specifies whether the networking service should transmit ICMPv6 packets, for a subnet- Author:
- Taemin
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DHCPV6_STATEFULDHCPV6_STATELESSSLAAC
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Ipv6RaModeforValue(String value)StringgetIpv6RaMode()static Ipv6RaModevalueOf(String name)Returns the enum constant of this type with the specified name.static Ipv6RaMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SLAAC
public static final Ipv6RaMode SLAAC
-
DHCPV6_STATEFUL
public static final Ipv6RaMode DHCPV6_STATEFUL
-
DHCPV6_STATELESS
public static final Ipv6RaMode DHCPV6_STATELESS
-
-
Method Detail
-
values
public static Ipv6RaMode[] 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 (Ipv6RaMode c : Ipv6RaMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ipv6RaMode 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
-
forValue
public static Ipv6RaMode forValue(String value)
-
getIpv6RaMode
public String getIpv6RaMode()
-
-