Enum Class OrderState

java.lang.Object
java.lang.Enum<OrderState>
org.openwms.wms.order.OrderState
All Implemented Interfaces:
Serializable, Comparable<OrderState>, Constable

public enum OrderState extends Enum<OrderState>
An OrderState.
Author:
Heiko Scherrer
  • Enum Constant Details

    • UNDEFINED

      public static final OrderState UNDEFINED
    • CREATED

      public static final OrderState CREATED
    • PROCESSING

      public static final OrderState PROCESSING
    • PROCESSED

      public static final OrderState PROCESSED
    • ON_TRUCK

      public static final OrderState ON_TRUCK
    • FAILURE_WMS

      public static final OrderState FAILURE_WMS
    • FAILURE_TMS

      public static final OrderState FAILURE_TMS
    • COMPLETED

      public static final OrderState COMPLETED
    • CANCELED

      public static final OrderState CANCELED
  • Constructor Details

    • OrderState

      private OrderState()
  • Method Details

    • values

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