Enum Class TransportUnitState

java.lang.Object
java.lang.Enum<TransportUnitState>
org.openwms.common.transport.TransportUnitState
All Implemented Interfaces:
Serializable, Comparable<TransportUnitState>, Constable

public enum TransportUnitState extends Enum<TransportUnitState>
A TransportUnitState defines a set of states for TransportUnits.
Author:
Tina Russell, Heiko Scherrer
See Also:
  • Enum Constant Details

    • AVAILABLE

      public static final TransportUnitState AVAILABLE
      The TransportUnit is available for operations.
    • QUALITY_CHECK

      public static final TransportUnitState QUALITY_CHECK
      The TransportUnit is planned for QC processing.
    • BLOCKED

      public static final TransportUnitState BLOCKED
      The TransportUnit is blocked for operations without any particular reason.
  • Constructor Details

    • TransportUnitState

      private TransportUnitState()
  • Method Details

    • values

      public static TransportUnitState[] 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 TransportUnitState 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