|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<BuildFinishedStatus>
jetbrains.buildServer.agent.BuildFinishedStatus
public enum BuildFinishedStatus
Contains build finish statuses on agent
| Enum Constant Summary | |
|---|---|
FINISHED_FAILED
Build failed |
|
FINISHED_SUCCESS
Build finished successfully |
|
INTERRUPTED
Build was interrupted |
|
| Method Summary | |
|---|---|
boolean |
isFailed()
Interrupted build is failed. |
boolean |
isFinished()
Build is finished iff it was not interrupted |
static BuildFinishedStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BuildFinishedStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
BuildFinishedStatus |
worse(BuildFinishedStatus status)
Computes the worst status between this and given |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final BuildFinishedStatus INTERRUPTED
public static final BuildFinishedStatus FINISHED_SUCCESS
public static final BuildFinishedStatus FINISHED_FAILED
| Method Detail |
|---|
public static BuildFinishedStatus[] values()
for (BuildFinishedStatus c : BuildFinishedStatus.values()) System.out.println(c);
public static BuildFinishedStatus 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 name
java.lang.NullPointerException - if the argument is nullpublic boolean isFailed()
public boolean isFinished()
public BuildFinishedStatus worse(@Nullable
BuildFinishedStatus status)
status - to compare with
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||