Enum IValidationFinding.Kind

java.lang.Object
java.lang.Enum<IValidationFinding.Kind>
dev.metaschema.core.model.validation.IValidationFinding.Kind
All Implemented Interfaces:
Serializable, Comparable<IValidationFinding.Kind>
Enclosing interface:
IValidationFinding

public static enum IValidationFinding.Kind extends Enum<IValidationFinding.Kind>
The finding type.
  • Enum Constant Details

    • NOT_APPLICABLE

      public static final IValidationFinding.Kind NOT_APPLICABLE
      The finding does not apply to the intended purpose of the validation.
    • PASS

      public static final IValidationFinding.Kind PASS
      The finding represents a successful result.
    • FAIL

      public static final IValidationFinding.Kind FAIL
      The finding represents an unsuccessful result.
    • INFORMATIONAL

      public static final IValidationFinding.Kind INFORMATIONAL
      The finding is providing information that does not indicate success or failure.
  • Method Details

    • values

      public static IValidationFinding.Kind[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static IValidationFinding.Kind valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null