public enum TransactionActionEnumeration extends Enum<TransactionActionEnumeration>
Java class for TransactionActionEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TransactionActionEnumeration">
<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 TransactionActionEnumeration |
fromValue(String v) |
String |
value() |
static TransactionActionEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionActionEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionActionEnumeration START_TRANSACTION
public static final TransactionActionEnumeration ABORT_TRANSACTION
public static TransactionActionEnumeration[] values()
for (TransactionActionEnumeration c : TransactionActionEnumeration.values()) System.out.println(c);
public static TransactionActionEnumeration 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 TransactionActionEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.