public enum TransactionTypeEnum extends Enum<TransactionTypeEnum>
Java class for transactionTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="transactionTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="authOnlyTransaction"/>
<enumeration value="authCaptureTransaction"/>
<enumeration value="captureOnlyTransaction"/>
<enumeration value="refundTransaction"/>
<enumeration value="priorAuthCaptureTransaction"/>
<enumeration value="voidTransaction"/>
<enumeration value="getDetailsTransaction"/>
<enumeration value="authOnlyContinueTransaction"/>
<enumeration value="authCaptureContinueTransaction"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static TransactionTypeEnum |
fromValue(String v) |
String |
value() |
static TransactionTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionTypeEnum AUTH_ONLY_TRANSACTION
public static final TransactionTypeEnum AUTH_CAPTURE_TRANSACTION
public static final TransactionTypeEnum CAPTURE_ONLY_TRANSACTION
public static final TransactionTypeEnum REFUND_TRANSACTION
public static final TransactionTypeEnum PRIOR_AUTH_CAPTURE_TRANSACTION
public static final TransactionTypeEnum VOID_TRANSACTION
public static final TransactionTypeEnum GET_DETAILS_TRANSACTION
public static final TransactionTypeEnum AUTH_ONLY_CONTINUE_TRANSACTION
public static final TransactionTypeEnum AUTH_CAPTURE_CONTINUE_TRANSACTION
public static TransactionTypeEnum[] values()
for (TransactionTypeEnum c : TransactionTypeEnum.values()) System.out.println(c);
public static TransactionTypeEnum 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 TransactionTypeEnum fromValue(String v)
Copyright © 2020. All rights reserved.