public enum MyMessagesForwardOperation extends java.lang.Enum<MyMessagesForwardOperation>
| Enum Constant and Description |
|---|
DISABLED |
ENABLED |
ENABLED_AND_DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
static MyMessagesForwardOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MyMessagesForwardOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MyMessagesForwardOperation DISABLED
public static final MyMessagesForwardOperation ENABLED
public static final MyMessagesForwardOperation ENABLED_AND_DEFAULT
public static MyMessagesForwardOperation[] values()
for (MyMessagesForwardOperation c : MyMessagesForwardOperation.values()) System.out.println(c);
public static MyMessagesForwardOperation 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