Enum Class QCFlag

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

public enum QCFlag extends Enum<QCFlag>
Quality control flag enumeration for artifacts in process execution. Represents the QC status of an artifact during or after processing.
  • Enum Constant Details

    • UNKNOWN

      public static final QCFlag UNKNOWN
      QC status is unknown.
    • PASSED

      public static final QCFlag PASSED
      QC check passed.
    • FAILED

      public static final QCFlag FAILED
      QC check failed.
    • CONTINUE

      public static final QCFlag CONTINUE
      Continue processing despite QC concerns.
  • 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 of the enum constant.
      Returns:
      The name of this enum constant.
    • fromValue

      public static QCFlag fromValue(String v)
      Converts a string value to a QCFlag enum constant.
      Parameters:
      v - The string value.
      Returns:
      The corresponding QCFlag enum constant.