net.authorize.api.contract.v1
Enum TransactionTypeEnum

java.lang.Object
  extended by java.lang.Enum<TransactionTypeEnum>
      extended by 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"/>
     <enumeration value="unknown"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AUTH_CAPTURE_CONTINUE_TRANSACTION
           
AUTH_CAPTURE_TRANSACTION
           
AUTH_ONLY_CONTINUE_TRANSACTION
           
AUTH_ONLY_TRANSACTION
           
CAPTURE_ONLY_TRANSACTION
           
GET_DETAILS_TRANSACTION
           
PRIOR_AUTH_CAPTURE_TRANSACTION
           
REFUND_TRANSACTION
           
UNKNOWN
           
VOID_TRANSACTION
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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

UNKNOWN

public static final TransactionTypeEnum UNKNOWN
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 name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static TransactionTypeEnum fromValue(String v)


Copyright © 2014. All Rights Reserved.