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