Enum Class OrderState

java.lang.Object
java.lang.Enum<OrderState>
org.openwms.wms.shipping.api.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
      Initial state.
    • CREATED

      public static final OrderState CREATED
      Newly created.
    • AVAILABLE

      public static final OrderState AVAILABLE
      Ready for further actions, like allocation or commissioning.
    • PROCESSING

      public static final OrderState PROCESSING
    • PROCESSED

      public static final OrderState PROCESSED
    • COMMISSIONING

      public static final OrderState COMMISSIONING
      ShippingOrder is already in commissioning.
    • FAILURE_WMS

      public static final OrderState FAILURE_WMS
      Error occurred on WMS layer.
    • FAILURE_TMS

      public static final OrderState FAILURE_TMS
      Error occurred on WMS layer.
    • COMPLETED

      public static final OrderState COMPLETED
      Completed successfully.
    • ON_TRUCK

      public static final OrderState ON_TRUCK
      Shipping loaded on truck -> shipped.
  • 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