Package model
Enum CreateTransferRequest.OperationKeyEnum
- java.lang.Object
-
- java.lang.Enum<CreateTransferRequest.OperationKeyEnum>
-
- model.CreateTransferRequest.OperationKeyEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CreateTransferRequest.OperationKeyEnum>
- Enclosing class:
- CreateTransferRequest
public static enum CreateTransferRequest.OperationKeyEnum extends Enum<CreateTransferRequest.OperationKeyEnum>
Details the operation that'll be performed in the transaction.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCreateTransferRequest.OperationKeyEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description CARD_PRESENT_DEBITCARD_PRESENT_UNREFERENCED_REFUNDMERCHANT_CREDIT_ADJUSTMENTMERCHANT_DEBIT_ADJUSTMENTPULL_FROM_CARDPUSH_TO_CARDSALEUNKNOWN_DEFAULTUNREFERENCED_REFUND
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateTransferRequest.OperationKeyEnumfromValue(String value)StringgetRawValue()StringgetValue()voidsetRawValue(String s)StringtoString()static CreateTransferRequest.OperationKeyEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CreateTransferRequest.OperationKeyEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUSH_TO_CARD
public static final CreateTransferRequest.OperationKeyEnum PUSH_TO_CARD
-
PULL_FROM_CARD
public static final CreateTransferRequest.OperationKeyEnum PULL_FROM_CARD
-
CARD_PRESENT_DEBIT
public static final CreateTransferRequest.OperationKeyEnum CARD_PRESENT_DEBIT
-
CARD_PRESENT_UNREFERENCED_REFUND
public static final CreateTransferRequest.OperationKeyEnum CARD_PRESENT_UNREFERENCED_REFUND
-
SALE
public static final CreateTransferRequest.OperationKeyEnum SALE
-
UNREFERENCED_REFUND
public static final CreateTransferRequest.OperationKeyEnum UNREFERENCED_REFUND
-
MERCHANT_CREDIT_ADJUSTMENT
public static final CreateTransferRequest.OperationKeyEnum MERCHANT_CREDIT_ADJUSTMENT
-
MERCHANT_DEBIT_ADJUSTMENT
public static final CreateTransferRequest.OperationKeyEnum MERCHANT_DEBIT_ADJUSTMENT
-
UNKNOWN_DEFAULT
public static final CreateTransferRequest.OperationKeyEnum UNKNOWN_DEFAULT
-
-
Method Detail
-
values
public static CreateTransferRequest.OperationKeyEnum[] 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 (CreateTransferRequest.OperationKeyEnum c : CreateTransferRequest.OperationKeyEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateTransferRequest.OperationKeyEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<CreateTransferRequest.OperationKeyEnum>
-
setRawValue
public void setRawValue(String s)
-
getRawValue
public String getRawValue()
-
fromValue
public static CreateTransferRequest.OperationKeyEnum fromValue(String value)
-
-