Enum Class QCFlag

java.lang.Object
java.lang.Enum<QCFlag>
com.genologics.ri.artifact.QCFlag
All Implemented Interfaces:
Serializable, Comparable<QCFlag>, Constable

public enum QCFlag extends Enum<QCFlag>
Enumeration of quality control flag values.
  • Enum Constant Details

    • UNKNOWN

      public static final QCFlag UNKNOWN
      Unknown quality control status.
    • PASSED

      public static final QCFlag PASSED
      Passed quality control.
    • FAILED

      public static final QCFlag FAILED
      Failed quality control.
    • CONTINUE

      public static final QCFlag CONTINUE
      Continue despite quality control status.
  • Method Details

    • values

      public static QCFlag[] 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 QCFlag 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
    • value

      public String value()
      Gets the string value.
      Returns:
      The string value.
    • fromValue

      public static QCFlag fromValue(String v)
      Gets the QCFlag from a string value.
      Parameters:
      v - The string value.
      Returns:
      The corresponding QCFlag.