Enum DMNValidator.Validation

    • Enum Constant Summary

      Enum Constants 
      Enum Constant 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
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static DMNValidator.Validation valueOf​(java.lang.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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 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​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null