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