public static enum Commitstatus.StateEnum extends java.lang.Enum<Commitstatus.StateEnum>
| Enum Constant and Description |
|---|
FAILED |
INPROGRESS |
STOPPED |
SUCCESSFUL |
| Modifier and Type | Method and Description |
|---|---|
static Commitstatus.StateEnum |
fromValue(java.lang.String v) |
java.lang.String |
toString() |
java.lang.String |
value() |
static Commitstatus.StateEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Commitstatus.StateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Commitstatus.StateEnum SUCCESSFUL
public static final Commitstatus.StateEnum FAILED
public static final Commitstatus.StateEnum INPROGRESS
public static final Commitstatus.StateEnum STOPPED
public static Commitstatus.StateEnum[] values()
for (Commitstatus.StateEnum c : Commitstatus.StateEnum.values()) System.out.println(c);
public static Commitstatus.StateEnum 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 value()
public java.lang.String toString()
toString in class java.lang.Enum<Commitstatus.StateEnum>public static Commitstatus.StateEnum fromValue(java.lang.String v)