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