public enum LastVerbExecuted extends java.lang.Enum<LastVerbExecuted>
| Enum Constant and Description |
|---|
FORWARD
The message has been forwarded.
|
NONE
None.
|
REPLY_TO_ALL
Reply has been sent to all.
|
REPLY_TO_SENDER
Reply has been sent to sender.
|
| Modifier and Type | Method and Description |
|---|---|
static LastVerbExecuted |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LastVerbExecuted[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LastVerbExecuted REPLY_TO_SENDER
public static final LastVerbExecuted REPLY_TO_ALL
public static final LastVerbExecuted FORWARD
public static final LastVerbExecuted NONE
public static LastVerbExecuted[] values()
for (LastVerbExecuted c : LastVerbExecuted.values()) System.out.println(c);
public static LastVerbExecuted 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