Enum DMNValidator.Validation

    • Enum Constant Detail

      • 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 name
        NullPointerException - if the argument is null