public static enum Version.ReleaseStatus extends Enum<Version.ReleaseStatus>
| Enum Constant and Description |
|---|
Alpha |
Beta |
Release |
Release_Candidate |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Version.ReleaseStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Version.ReleaseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Version.ReleaseStatus Release
public static final Version.ReleaseStatus Release_Candidate
public static final Version.ReleaseStatus Beta
public static final Version.ReleaseStatus Alpha
public static Version.ReleaseStatus[] values()
for (Version.ReleaseStatus c : Version.ReleaseStatus.values()) System.out.println(c);
public static Version.ReleaseStatus 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 toString()
toString in class Enum<Version.ReleaseStatus>Copyright © 2003-2008 Jive Software.