public static enum BuildStatus.StatusType extends Enum<BuildStatus.StatusType>
| Enum Constant and Description |
|---|
ABORTED |
FAILURE |
PENDING |
SUCCESS |
UNSTABLE |
| Modifier and Type | Method and Description |
|---|---|
static BuildStatus.StatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildStatus.StatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildStatus.StatusType PENDING
public static final BuildStatus.StatusType ABORTED
public static final BuildStatus.StatusType UNSTABLE
public static final BuildStatus.StatusType FAILURE
public static final BuildStatus.StatusType SUCCESS
public static BuildStatus.StatusType[] values()
for (BuildStatus.StatusType c : BuildStatus.StatusType.values()) System.out.println(c);
public static BuildStatus.StatusType 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 nullCopyright © 2016–2020 Cloudogu GmbH. All rights reserved.