@Generated public enum RunResultState extends Enum<RunResultState>
Enum Constant and Description |
---|
CANCELED |
EXCLUDED |
FAILED |
MAXIMUM_CONCURRENT_RUNS_REACHED |
SUCCESS |
SUCCESS_WITH_FAILURES |
TIMEDOUT |
UPSTREAM_CANCELED |
UPSTREAM_FAILED |
Modifier and Type | Method and Description |
---|---|
static RunResultState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunResultState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunResultState CANCELED
public static final RunResultState EXCLUDED
public static final RunResultState FAILED
public static final RunResultState MAXIMUM_CONCURRENT_RUNS_REACHED
public static final RunResultState SUCCESS
public static final RunResultState SUCCESS_WITH_FAILURES
public static final RunResultState TIMEDOUT
public static final RunResultState UPSTREAM_CANCELED
public static final RunResultState UPSTREAM_FAILED
public static RunResultState[] values()
for (RunResultState c : RunResultState.values()) System.out.println(c);
public static RunResultState 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 © 2024. All rights reserved.