public enum SecureMode extends java.lang.Enum<SecureMode>
| Enum Constant and Description |
|---|
DEFAULT
Secured Mode is activated from €100.
|
FORCE
Secured Mode is activated for any transaction's amount.
|
NO_CHOICE
Secured Mode has no choice.
|
NotSpecified
Not specified.
|
| Modifier and Type | Method and Description |
|---|---|
static SecureMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecureMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecureMode NotSpecified
public static final SecureMode DEFAULT
public static final SecureMode FORCE
public static final SecureMode NO_CHOICE
public static SecureMode[] values()
for (SecureMode c : SecureMode.values()) System.out.println(c);
public static SecureMode 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