public static enum ExecutionReport.ExecutionReportFlag extends Enum<ExecutionReport.ExecutionReportFlag>
| Enum Constant and Description |
|---|
FAILED_CLEANUP |
FAILED_EXECUTION |
SUCCESS |
UNABLE_TO_EXECUTE |
WRONG_PARAMETER |
| Modifier and Type | Method and Description |
|---|---|
static ExecutionReport.ExecutionReportFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionReport.ExecutionReportFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionReport.ExecutionReportFlag SUCCESS
public static final ExecutionReport.ExecutionReportFlag WRONG_PARAMETER
public static final ExecutionReport.ExecutionReportFlag UNABLE_TO_EXECUTE
public static final ExecutionReport.ExecutionReportFlag FAILED_EXECUTION
public static final ExecutionReport.ExecutionReportFlag FAILED_CLEANUP
public static ExecutionReport.ExecutionReportFlag[] values()
for (ExecutionReport.ExecutionReportFlag c : ExecutionReport.ExecutionReportFlag.values()) System.out.println(c);
public static ExecutionReport.ExecutionReportFlag 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 © 2017. All Rights Reserved.