public enum TransactionActionType extends Enum<TransactionActionType>
Java class for TransactionActionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TransactionActionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="StartTransaction"/>
<enumeration value="AbortTransaction"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ABORT_TRANSACTION
Abort a transaction started either by a CardAcquisition or EnableService with TransactionAction to "StartTransaction", not followed by a service request from
|
START_TRANSACTION
Start a transaction by a swipe ahead mechanism, with the services which are enabled.
|
| Modifier and Type | Method and Description |
|---|---|
static TransactionActionType |
fromValue(String v)
From value transaction action type.
|
String |
value()
Value string.
|
static TransactionActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionActionType START_TRANSACTION
public static final TransactionActionType ABORT_TRANSACTION
public static TransactionActionType[] values()
for (TransactionActionType c : TransactionActionType.values()) System.out.println(c);
public static TransactionActionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static TransactionActionType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.