Package net.authorize.api.contract.v1
Enum TransactionTypeEnum
- java.lang.Object
-
- java.lang.Enum<TransactionTypeEnum>
-
- net.authorize.api.contract.v1.TransactionTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TransactionTypeEnum>
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>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransactionTypeEnumfromValue(String v)Stringvalue()static TransactionTypeEnumvalueOf(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.
-
-
-
Enum Constant Detail
-
AUTH_ONLY_TRANSACTION
public static final TransactionTypeEnum AUTH_ONLY_TRANSACTION
-
AUTH_CAPTURE_TRANSACTION
public static final TransactionTypeEnum AUTH_CAPTURE_TRANSACTION
-
CAPTURE_ONLY_TRANSACTION
public static final TransactionTypeEnum CAPTURE_ONLY_TRANSACTION
-
REFUND_TRANSACTION
public static final TransactionTypeEnum REFUND_TRANSACTION
-
PRIOR_AUTH_CAPTURE_TRANSACTION
public static final TransactionTypeEnum PRIOR_AUTH_CAPTURE_TRANSACTION
-
VOID_TRANSACTION
public static final TransactionTypeEnum VOID_TRANSACTION
-
GET_DETAILS_TRANSACTION
public static final TransactionTypeEnum GET_DETAILS_TRANSACTION
-
AUTH_ONLY_CONTINUE_TRANSACTION
public static final TransactionTypeEnum AUTH_ONLY_CONTINUE_TRANSACTION
-
AUTH_CAPTURE_CONTINUE_TRANSACTION
public static final TransactionTypeEnum AUTH_CAPTURE_CONTINUE_TRANSACTION
-
-
Method Detail
-
values
public static TransactionTypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TransactionTypeEnum c : TransactionTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransactionTypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static TransactionTypeEnum fromValue(String v)
-
-