public static enum Result.Level extends Enum<Result.Level>
| Enum Constant and Description |
|---|
ERROR |
FAILURE |
SUCCESS |
UNEXECUTED |
WARNING |
| Modifier and Type | Field and Description |
|---|---|
int |
exitCode |
int |
strictExitCode |
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Result.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Result.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Result.Level UNEXECUTED
public static final Result.Level SUCCESS
public static final Result.Level WARNING
public static final Result.Level FAILURE
public static final Result.Level ERROR
public final int value
public final int exitCode
public final int strictExitCode
public static Result.Level[] values()
for (Result.Level c : Result.Level.values()) System.out.println(c);
public static Result.Level 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. All rights reserved.