Enum Class ValidationSeverity
- All Implemented Interfaces:
Serializable
,Comparable<ValidationSeverity>
,Constable
Issue severity.
Mapping to com.e1c.g5.v8.dt.check.settings.IssueSeverity
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe blocker should be fixed before the task it blocks could be continuedThe critical error that prevent the part of the project functionality from proper work completellyThe error that seriously hinders the work with the system but effect is local or can be compensated by other actionsThe minor error that affects usability or rarely used sceanrios of low priorityUI glitches, minor inconveniences, etc -
Method Summary
Modifier and TypeMethodDescriptionstatic ValidationSeverity
Returns the enum constant of this class with the specified name.static ValidationSeverity[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BLOCKER
The blocker should be fixed before the task it blocks could be continued -
CRITICAL
The critical error that prevent the part of the project functionality from proper work completelly -
MAJOR
The error that seriously hinders the work with the system but effect is local or can be compensated by other actions -
MINOR
The minor error that affects usability or rarely used sceanrios of low priority -
TRIVIAL
UI glitches, minor inconveniences, etc
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-