public static enum ProcessCheckService.CheckSet extends java.lang.Enum<ProcessCheckService.CheckSet>
| Enum Constant and Description |
|---|
BASIC_MODELLING
Basic modelling checks, cf.
|
EXECUTION_PRODUCTION
Production execution checks, cf.
|
EXECUTION_TEST_CLIENT
Test client checks, cf.
|
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
label
Human readable name.
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessCheckService.CheckSet |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessCheckService.CheckSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessCheckService.CheckSet BASIC_MODELLING
ProcessCheckService.getBasicModellingChecks()public static final ProcessCheckService.CheckSet EXECUTION_TEST_CLIENT
ProcessCheckService.getExecutionTestClientChecks()public static final ProcessCheckService.CheckSet EXECUTION_PRODUCTION
ProcessCheckService.getExecutionProductionChecks()public static ProcessCheckService.CheckSet[] values()
for (ProcessCheckService.CheckSet c : ProcessCheckService.CheckSet.values()) System.out.println(c);
public static ProcessCheckService.CheckSet 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 namejava.lang.NullPointerException - if the argument is null