public enum ReleaseStatus extends java.lang.Enum<ReleaseStatus>
| Modifier and Type | Method and Description |
|---|---|
static ReleaseStatus |
fromString(java.lang.String label) |
java.lang.String |
getText() |
static ReleaseStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReleaseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReleaseStatus ACTIVE
public static final ReleaseStatus DEPLOYED
public static final ReleaseStatus CANCELED
public static ReleaseStatus[] values()
for (ReleaseStatus c : ReleaseStatus.values()) System.out.println(c);
public static ReleaseStatus 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 nullpublic java.lang.String getText()
public static ReleaseStatus fromString(java.lang.String label)