public enum TransactionType extends java.lang.Enum<TransactionType>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCode() |
static TransactionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionType AUTORIZACION
public static final TransactionType PRE_AUTORIZACION
public static final TransactionType CONFIRMACION_PRE_AUTORIZACION
public static final TransactionType DEVOLUCION_AUTOMATICA
public static final TransactionType CUOTA_INICIAL
public static final TransactionType CUOTA_SUCESIVA
public static final TransactionType PRE_AUTENTICACION
public static final TransactionType CONFIRMACION_PRE_AUTENTICACION
public static final TransactionType ANULACION_PRE_AUTORIZACION
public static final TransactionType AUTORIZACION_DIFERIDO
public static final TransactionType CONFIRMACION_AUTORIZACION_DIFERIDO
public static final TransactionType ANULACION_AUTORIZACION_DIFERIDO
public static final TransactionType CUOTA_INICIAL_DIFERIDO
public static final TransactionType CUOTA_SUCESIVA_DIFERIDO
public static TransactionType[] values()
for (TransactionType c : TransactionType.values()) System.out.println(c);
public static TransactionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getCode()