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