Enum ValidationInfoSeverity

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ValidationInfoSeverity>

    public enum ValidationInfoSeverity
    extends java.lang.Enum<ValidationInfoSeverity>
    Represents severity level of Rule Validation results
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ERROR
      Generated enum value for ValidationInfoSeverity.ERROR("z-icon-times-circle", "ye-validation-error") value defined at extension rulebuilderbackoffice.
      INFO
      Generated enum value for ValidationInfoSeverity.INFO("z-icon-info-circle", "ye-validation-info") value defined at extension rulebuilderbackoffice.
      NONE
      Generated enum value for ValidationInfoSeverity.NONE("", "ye-validation-none") value defined at extension rulebuilderbackoffice.
      WARN
      Generated enum value for ValidationInfoSeverity.WARN("z-icon-exclamation-triangle", "ye-validation-warn") value defined at extension rulebuilderbackoffice.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getIconStyleClass()  
      java.lang.String getStyleClass()  
      static ValidationInfoSeverity valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ValidationInfoSeverity[] 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

      • ERROR

        public static final ValidationInfoSeverity ERROR
        Generated enum value for ValidationInfoSeverity.ERROR("z-icon-times-circle", "ye-validation-error") value defined at extension rulebuilderbackoffice.
      • WARN

        public static final ValidationInfoSeverity WARN
        Generated enum value for ValidationInfoSeverity.WARN("z-icon-exclamation-triangle", "ye-validation-warn") value defined at extension rulebuilderbackoffice.
      • INFO

        public static final ValidationInfoSeverity INFO
        Generated enum value for ValidationInfoSeverity.INFO("z-icon-info-circle", "ye-validation-info") value defined at extension rulebuilderbackoffice.
      • NONE

        public static final ValidationInfoSeverity NONE
        Generated enum value for ValidationInfoSeverity.NONE("", "ye-validation-none") value defined at extension rulebuilderbackoffice.
    • Method Detail

      • values

        public static ValidationInfoSeverity[] 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 (ValidationInfoSeverity c : ValidationInfoSeverity.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ValidationInfoSeverity 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
      • getIconStyleClass

        public java.lang.String getIconStyleClass()
      • getStyleClass

        public java.lang.String getStyleClass()