Enum ValidationInfoSeverity
- java.lang.Object
-
- java.lang.Enum<ValidationInfoSeverity>
-
- de.hybris.platform.rulebuilderbackoffice.editors.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 ERRORGenerated enum value forValidationInfoSeverity.ERROR("z-icon-times-circle", "ye-validation-error")value defined at extensionrulebuilderbackoffice.INFOGenerated enum value forValidationInfoSeverity.INFO("z-icon-info-circle", "ye-validation-info")value defined at extensionrulebuilderbackoffice.NONEGenerated enum value forValidationInfoSeverity.NONE("", "ye-validation-none")value defined at extensionrulebuilderbackoffice.WARNGenerated enum value forValidationInfoSeverity.WARN("z-icon-exclamation-triangle", "ye-validation-warn")value defined at extensionrulebuilderbackoffice.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetIconStyleClass()java.lang.StringgetStyleClass()static ValidationInfoSeverityvalueOf(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.
-
-
-
Enum Constant Detail
-
ERROR
public static final ValidationInfoSeverity ERROR
Generated enum value forValidationInfoSeverity.ERROR("z-icon-times-circle", "ye-validation-error")value defined at extensionrulebuilderbackoffice.
-
WARN
public static final ValidationInfoSeverity WARN
Generated enum value forValidationInfoSeverity.WARN("z-icon-exclamation-triangle", "ye-validation-warn")value defined at extensionrulebuilderbackoffice.
-
INFO
public static final ValidationInfoSeverity INFO
Generated enum value forValidationInfoSeverity.INFO("z-icon-info-circle", "ye-validation-info")value defined at extensionrulebuilderbackoffice.
-
NONE
public static final ValidationInfoSeverity NONE
Generated enum value forValidationInfoSeverity.NONE("", "ye-validation-none")value defined at extensionrulebuilderbackoffice.
-
-
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 namejava.lang.NullPointerException- if the argument is null
-
getIconStyleClass
public java.lang.String getIconStyleClass()
-
getStyleClass
public java.lang.String getStyleClass()
-
-