public static enum Version.State extends java.lang.Enum<Version.State>
State of version
Current status of version
Enum Constant and Description |
---|
Active
Active version
|
Inactive
Inactive version
|
Modifier and Type | Method and Description |
---|---|
static Version.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Version.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Version.State Active
public static final Version.State Inactive
public static Version.State[] values()
for (Version.State c : Version.State.values()) System.out.println(c);
public static Version.State 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