Package org.openwms.tms
Enum Class TransportServiceEvent.TYPE
- All Implemented Interfaces:
Serializable
,Comparable<TransportServiceEvent.TYPE>
,Constable
- Enclosing class:
TransportServiceEvent
All possible types of this event.
- Author:
- Tina Russell, Heiko Scherrer
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionTransportOrder has been initialized.TransportOrder has been started.A TransportOrder was canceled.A TransportOrder has been created.A TransportOrder was finished.A TransportOrder was interrupted.A TransportOrder was set on failure. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic TransportServiceEvent.TYPE
of
(TransportOrderState requestedState) static TransportServiceEvent.TYPE
Returns the enum constant of this class with the specified name.static TransportServiceEvent.TYPE[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TRANSPORT_CREATED
A TransportOrder has been created. -
INITIALIZED
TransportOrder has been initialized. -
STARTED
TransportOrder has been started. -
TRANSPORT_INTERRUPTED
A TransportOrder was interrupted. -
TRANSPORT_ONFAILURE
A TransportOrder was set on failure. -
TRANSPORT_CANCELED
A TransportOrder was canceled. -
TRANSPORT_FINISHED
A TransportOrder was finished.
-
-
Constructor Details
-
TYPE
private TYPE()
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
of
-