public enum BuildStatus extends Enum<BuildStatus>
| Enum Constant and Description |
|---|
COMPLETED |
FAILURE |
RUNNING |
SCHEDULED |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static BuildStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildStatus SCHEDULED
public static final BuildStatus RUNNING
public static final BuildStatus COMPLETED
public static final BuildStatus SUCCESS
public static final BuildStatus FAILURE
public static BuildStatus[] values()
for (BuildStatus c : BuildStatus.values()) System.out.println(c);
public static BuildStatus 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<BuildStatus>Copyright © 2004-2015. All Rights Reserved.