public enum BuildState extends Enum<BuildState>
Enum Constant and Description |
---|
canceled |
failed |
pending |
running |
skipped |
success |
Modifier and Type | Method and Description |
---|---|
static BuildState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildState pending
public static final BuildState running
public static final BuildState canceled
public static final BuildState success
public static final BuildState failed
public static final BuildState skipped
public static BuildState[] values()
for (BuildState c : BuildState.values()) System.out.println(c);
public static BuildState 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–2022. All rights reserved.