Enum QcStatus

java.lang.Object
java.lang.Enum<QcStatus>
com.mayam.wf.attributes.shared.type.QcStatus
All Implemented Interfaces:
ManagedEnum, Serializable, Comparable<QcStatus>

public enum QcStatus extends Enum<QcStatus> implements ManagedEnum
QC pass/fail status
Author:
Markus MÃ¥rtensson
  • Enum Constant Details

    • FAIL

      public static final QcStatus FAIL
      QC failed
    • PASS

      public static final QcStatus PASS
      QC pass
    • TBD

      public static final QcStatus TBD
      QC status not yet known
    • PASS_MANUAL

      public static final QcStatus PASS_MANUAL
      Manually passed. Fail overwritten
    • SKIPPED

      public static final QcStatus SKIPPED
      Skipped
    • WARNING

      public static final QcStatus WARNING
      Warning
    • EDIT

      public static final QcStatus EDIT
      Edit
  • Field Details

  • Method Details

    • values

      public static QcStatus[] 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 QcStatus 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
    • compact

      public String compact()
      Description copied from interface: ManagedEnum
      Compact String representation of the enum.
      Specified by:
      compact in interface ManagedEnum