Enum Class ValidationSeverity

java.lang.Object
java.lang.Enum<ValidationSeverity>
com._1c.g5.v8.dt.validation.legacy.ValidationSeverity
All Implemented Interfaces:
Serializable, Comparable<ValidationSeverity>, Constable

public enum ValidationSeverity extends Enum<ValidationSeverity>
Issue severity. Mapping to com.e1c.g5.v8.dt.check.settings.IssueSeverity
  • Enum Constant Details

    • BLOCKER

      public static final ValidationSeverity BLOCKER
      The blocker should be fixed before the task it blocks could be continued
    • CRITICAL

      public static final ValidationSeverity CRITICAL
      The critical error that prevent the part of the project functionality from proper work completelly
    • MAJOR

      public static final ValidationSeverity MAJOR
      The error that seriously hinders the work with the system but effect is local or can be compensated by other actions
    • MINOR

      public static final ValidationSeverity MINOR
      The minor error that affects usability or rarely used sceanrios of low priority
    • TRIVIAL

      public static final ValidationSeverity TRIVIAL
      UI glitches, minor inconveniences, etc
  • Method Details

    • values

      public static ValidationSeverity[] 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

      public static ValidationSeverity valueOf(String name)
      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 name
      NullPointerException - if the argument is null