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