public static enum Subnet.Mode extends Enum<Subnet.Mode>
| Enum Constant and Description |
|---|
DHCPV6_STATEFUL |
DHCPV6_STATELESS |
SLAAC |
| Modifier and Type | Method and Description |
|---|---|
static Subnet.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Subnet.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Subnet.Mode DHCPV6_STATEFUL
public static final Subnet.Mode DHCPV6_STATELESS
public static final Subnet.Mode SLAAC
public static Subnet.Mode[] values()
for (Subnet.Mode c : Subnet.Mode.values()) System.out.println(c);
public static Subnet.Mode 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