public static enum BlueRun.BlueRunResult extends Enum<BlueRun.BlueRunResult>
| Enum Constant and Description |
|---|
ABORTED
Aborted run
|
FAILURE
Build failed
|
NOT_BUILT
In multi stage build (maven2), a build step might not execute due to failure in previous step
|
SUCCESS
Build completed successfully
|
UNKNOWN
Unknown status
|
UNSTABLE |
| Modifier and Type | Method and Description |
|---|---|
static BlueRun.BlueRunResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlueRun.BlueRunResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlueRun.BlueRunResult SUCCESS
public static final BlueRun.BlueRunResult UNSTABLE
public static final BlueRun.BlueRunResult FAILURE
public static final BlueRun.BlueRunResult NOT_BUILT
public static final BlueRun.BlueRunResult UNKNOWN
public static final BlueRun.BlueRunResult ABORTED
public static BlueRun.BlueRunResult[] values()
for (BlueRun.BlueRunResult c : BlueRun.BlueRunResult.values()) System.out.println(c);
public static BlueRun.BlueRunResult 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–2021. All rights reserved.