public static enum JackProvider.SubReleaseKind extends java.lang.Enum<JackProvider.SubReleaseKind>
| Enum Constant and Description |
|---|
ALPHA
A sub-release that is not feature complete, tested.
|
BETA
A sub-release that is feature complete, tested, but likely contains known or unknown bugs.
|
CANDIDATE
A pre-production sub-release, tested.
|
ENGINEERING
A sub-release from an engineering development, not tested, not in the code base repository.
|
PRE_ALPHA
A sub-release that is not feature complete, not tested.
|
RELEASE
A production and stable sub-release.
|
| Modifier and Type | Method and Description |
|---|---|
static JackProvider.SubReleaseKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JackProvider.SubReleaseKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JackProvider.SubReleaseKind ENGINEERING
public static final JackProvider.SubReleaseKind PRE_ALPHA
public static final JackProvider.SubReleaseKind ALPHA
public static final JackProvider.SubReleaseKind BETA
public static final JackProvider.SubReleaseKind CANDIDATE
public static final JackProvider.SubReleaseKind RELEASE
public static JackProvider.SubReleaseKind[] values()
for (JackProvider.SubReleaseKind c : JackProvider.SubReleaseKind.values()) System.out.println(c);
public static JackProvider.SubReleaseKind 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