public enum TransactionType extends java.lang.Enum<TransactionType>
FlowType
.Enum Constant and Description |
---|
ExtendedMode
Part of an extended mode transaction.
|
None
Not part of any extended flow.
|
Synconreturn
ECI SYNCONRETURN transaction.
|
Unknown
Transaction type that is not yet defined.
|
Xa
Part of an XA transaction.
|
Modifier and Type | Method and Description |
---|---|
static TransactionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionType Unknown
public static final TransactionType None
public static final TransactionType Synconreturn
public static final TransactionType Xa
public static final TransactionType ExtendedMode
public static TransactionType[] values()
for (TransactionType c : TransactionType.values()) System.out.println(c);
public static TransactionType 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