public enum TimeOrderCmd extends java.lang.Enum<TimeOrderCmd>
EventCmdtype#isTimeout()
-Enum Constant and Description |
---|
abort
Used typically on a abort situation of an order which calls progress between.
|
ask
Used typically on a situation where a question is given of an order which calls progress between.
|
done
Used typically on end of an order which calls progress between.
|
error
Used typically on error of an order which calls progress between.
|
progress
Used typical in a cyclically call of any order.
|
timeOrder
Used typical in one call of any order for a delayed operation.
|
timeout
Used typically in state machines for a timeout.
|
Modifier and Type | Field and Description |
---|---|
(package private) java.lang.String |
ident |
Modifier and Type | Method and Description |
---|---|
static TimeOrderCmd |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimeOrderCmd[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeOrderCmd timeout
public static final TimeOrderCmd timeOrder
public static final TimeOrderCmd progress
public static final TimeOrderCmd done
public static final TimeOrderCmd error
public static final TimeOrderCmd ask
public static final TimeOrderCmd abort
public static TimeOrderCmd[] values()
for (TimeOrderCmd c : TimeOrderCmd.values()) System.out.println(c);
public static TimeOrderCmd valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null