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