Enum Class DMNValidator.Validation

java.lang.Object
java.lang.Enum<DMNValidator.Validation>
org.kie.dmn.validation.DMNValidator.Validation
All Implemented Interfaces:
Serializable, Comparable<DMNValidator.Validation>, Constable
Enclosing interface:
DMNValidator

public static enum DMNValidator.Validation extends Enum<DMNValidator.Validation>
  • Enum Constant Details

    • 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 Details

    • values

      public static DMNValidator.Validation[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DMNValidator.Validation valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null