public static enum DMNValidator.Validation extends Enum<DMNValidator.Validation>
| Enum Constant and Description |
|---|
ANALYZE_DECISION_TABLE
Perform static Decision Table Analysis on all the decision tables
|
COMPUTE_DECISION_TABLE_MCDC
Experimental flag: compute MC/DC Analysis on decision tables, as part of Decision Table Analysis
|
VALIDATE_COMPILATION
Perform standard compilation of the DMN model, reporting any error and other messages as part of validation
|
VALIDATE_MODEL
Perform static analysis validation
|
VALIDATE_SCHEMA
Perform DMN XSD schema validation
|
| Modifier and Type | Method and Description |
|---|---|
static DMNValidator.Validation |
valueOf(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.
|
public static final DMNValidator.Validation VALIDATE_SCHEMA
public static final DMNValidator.Validation VALIDATE_MODEL
public static final DMNValidator.Validation VALIDATE_COMPILATION
public static final DMNValidator.Validation ANALYZE_DECISION_TABLE
public static final DMNValidator.Validation COMPUTE_DECISION_TABLE_MCDC
public static DMNValidator.Validation[] values()
for (DMNValidator.Validation c : DMNValidator.Validation.values()) System.out.println(c);
public static DMNValidator.Validation 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 © 2001–2021 JBoss by Red Hat. All rights reserved.