Enum ProcessCheckService.CheckSet
- java.lang.Object
-
- java.lang.Enum<ProcessCheckService.CheckSet>
-
- de.aristaflow.adept2.core.checks.processmodel.ProcessCheckService.CheckSet
-
- All Implemented Interfaces:
Serializable
,Comparable<ProcessCheckService.CheckSet>
- Enclosing interface:
- ProcessCheckService
public static enum ProcessCheckService.CheckSet extends Enum<ProcessCheckService.CheckSet>
Enumeration for the existing check sets.- Author:
- Kevin Goeser
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASIC_MODELLING
Basic modelling checks, cf.EXECUTION_PRODUCTION
Production execution checks, cf.EXECUTION_TEST_CLIENT
Test client checks, cf.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProcessCheckService.CheckSet
valueOf(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.
-
-
-
Enum Constant Detail
-
BASIC_MODELLING
public static final ProcessCheckService.CheckSet BASIC_MODELLING
Basic modelling checks, cf.ProcessCheckService.getBasicModellingChecks()
-
EXECUTION_TEST_CLIENT
public static final ProcessCheckService.CheckSet EXECUTION_TEST_CLIENT
Test client checks, cf.ProcessCheckService.getExecutionTestClientChecks()
-
EXECUTION_PRODUCTION
public static final ProcessCheckService.CheckSet EXECUTION_PRODUCTION
Production execution checks, cf.ProcessCheckService.getExecutionProductionChecks()
-
-
Field Detail
-
label
public final String label
Human readable name.
-
-
Method Detail
-
values
public static ProcessCheckService.CheckSet[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProcessCheckService.CheckSet c : ProcessCheckService.CheckSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessCheckService.CheckSet valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-