Enum Class ValidationIssue.Severity

java.lang.Object
java.lang.Enum<ValidationIssue.Severity>
org.jpedal.arlington.validate.ValidationIssue.Severity
All Implemented Interfaces:
Serializable, Comparable<ValidationIssue.Severity>, Constable
Enclosing class:
ValidationIssue

public static enum ValidationIssue.Severity extends Enum<ValidationIssue.Severity>
The severity of an issue.
  • Enum Constant Details

    • ERROR

      public static final ValidationIssue.Severity ERROR
      A violation of the Arlington model (e.g. incorrect type, missing required key).
    • WARNING

      public static final ValidationIssue.Severity WARNING
      A likely issue that this validator cannot fully confirm (e.g. ambiguous link).
    • INFO

      public static final ValidationIssue.Severity INFO
      Informational (e.g. an unrecognized extra key).
  • Field Details

    • level

      public final int level
      The severity level as a number. The higher, the worse!
  • Method Details

    • values

      public static ValidationIssue.Severity[] 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 ValidationIssue.Severity 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