Package org.kie.dmn.validation
Enum DMNValidator.Validation
- java.lang.Object
-
- java.lang.Enum<DMNValidator.Validation>
-
- org.kie.dmn.validation.DMNValidator.Validation
-
- All Implemented Interfaces:
Serializable,Comparable<DMNValidator.Validation>
- Enclosing interface:
- DMNValidator
public static enum DMNValidator.Validation extends Enum<DMNValidator.Validation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYZE_DECISION_TABLEPerform static Decision Table Analysis on all the decision tablesCOMPUTE_DECISION_TABLE_MCDCExperimental flag: compute MC/DC Analysis on decision tables, as part of Decision Table AnalysisVALIDATE_COMPILATIONPerform standard compilation of the DMN model, reporting any error and other messages as part of validationVALIDATE_MODELPerform static analysis validationVALIDATE_SCHEMAPerform DMN XSD schema validation
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DMNValidator.ValidationvalueOf(String name)Returns the enum constant of this type with the specified name.static DMNValidator.Validation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALIDATE_SCHEMA
public static final DMNValidator.Validation VALIDATE_SCHEMA
Perform DMN XSD schema validation
-
VALIDATE_MODEL
public static final DMNValidator.Validation VALIDATE_MODEL
Perform static analysis validation
-
VALIDATE_COMPILATION
public static final DMNValidator.Validation VALIDATE_COMPILATION
Perform standard compilation of the DMN model, reporting any error and other messages as part of validation
-
ANALYZE_DECISION_TABLE
public static final DMNValidator.Validation ANALYZE_DECISION_TABLE
Perform static Decision Table Analysis on all the decision tables
-
COMPUTE_DECISION_TABLE_MCDC
public static final DMNValidator.Validation COMPUTE_DECISION_TABLE_MCDC
Experimental flag: compute MC/DC Analysis on decision tables, as part of Decision Table Analysis
-
-
Method Detail
-
values
public static DMNValidator.Validation[] 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 (DMNValidator.Validation c : DMNValidator.Validation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DMNValidator.Validation 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
-
-