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