public static enum Ipv6Types.Status.Values extends java.lang.Enum<Ipv6Types.Status.Values>
enum
representing this enumeration class.
Ordinals have no semantic meaning (your code should not rely on them).
Enum Constant and Description |
---|
_UNKNOWN
Special
enum constant which is used to represent constants
that do not exist in this enumeration binding. |
DEPRECATED
Represents
Ipv6Types.Status.DEPRECATED . |
DUPLICATE
Represents
Ipv6Types.Status.DUPLICATE . |
INACCESSIBLE
Represents
Ipv6Types.Status.INACCESSIBLE . |
INVALID
Represents
Ipv6Types.Status.INVALID . |
OPTIMISTIC
Represents
Ipv6Types.Status.OPTIMISTIC . |
PREFERRED
Represents
Ipv6Types.Status.PREFERRED . |
TENTATIVE
Represents
Ipv6Types.Status.TENTATIVE . |
UNKNOWN
Represents
Ipv6Types.Status.UNKNOWN . |
Modifier and Type | Method and Description |
---|---|
static Ipv6Types.Status.Values |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Ipv6Types.Status.Values[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ipv6Types.Status.Values TENTATIVE
Ipv6Types.Status.TENTATIVE
.public static final Ipv6Types.Status.Values UNKNOWN
Ipv6Types.Status.UNKNOWN
.public static final Ipv6Types.Status.Values INACCESSIBLE
Ipv6Types.Status.INACCESSIBLE
.public static final Ipv6Types.Status.Values INVALID
Ipv6Types.Status.INVALID
.public static final Ipv6Types.Status.Values DUPLICATE
Ipv6Types.Status.DUPLICATE
.public static final Ipv6Types.Status.Values PREFERRED
Ipv6Types.Status.PREFERRED
.public static final Ipv6Types.Status.Values DEPRECATED
Ipv6Types.Status.DEPRECATED
.public static final Ipv6Types.Status.Values OPTIMISTIC
Ipv6Types.Status.OPTIMISTIC
.public static final Ipv6Types.Status.Values _UNKNOWN
enum
constant which is used to represent constants
that do not exist in this enumeration binding. For example if a
client receives an enumeration constant that only exists in the
newer version of the API of the server, the client source code will
see it represented by _UNKNOWN
constant, because its version
of the native Java enum
lacks the new constant.public static Ipv6Types.Status.Values[] values()
for (Ipv6Types.Status.Values c : Ipv6Types.Status.Values.values()) System.out.println(c);
public static Ipv6Types.Status.Values valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null