Package com.adyen.model.transfers
Enum Transfer.TypeEnum
- java.lang.Object
-
- java.lang.Enum<Transfer.TypeEnum>
-
- com.adyen.model.transfers.Transfer.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<Transfer.TypeEnum>
- Enclosing class:
- Transfer
public static enum Transfer.TypeEnum extends Enum<Transfer.TypeEnum>
The type of transfer or transaction. For example, **refund**, **payment**, **internalTransfer**, **bankTransfer**.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Transfer.TypeEnumfromValue(String value)StringgetValue()StringtoString()static Transfer.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static Transfer.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATMWITHDRAWAL
public static final Transfer.TypeEnum ATMWITHDRAWAL
-
ATMWITHDRAWALREVERSAL
public static final Transfer.TypeEnum ATMWITHDRAWALREVERSAL
-
BALANCEADJUSTMENT
public static final Transfer.TypeEnum BALANCEADJUSTMENT
-
BALANCEMIGRATION
public static final Transfer.TypeEnum BALANCEMIGRATION
-
BALANCEROLLOVER
public static final Transfer.TypeEnum BALANCEROLLOVER
-
BANKDIRECTDEBIT
public static final Transfer.TypeEnum BANKDIRECTDEBIT
-
BANKTRANSFER
public static final Transfer.TypeEnum BANKTRANSFER
-
CAPITALFUNDSCOLLECTION
public static final Transfer.TypeEnum CAPITALFUNDSCOLLECTION
-
CAPTURE
public static final Transfer.TypeEnum CAPTURE
-
CAPTUREREVERSAL
public static final Transfer.TypeEnum CAPTUREREVERSAL
-
CARDTRANSFER
public static final Transfer.TypeEnum CARDTRANSFER
-
CASHOUTFEE
public static final Transfer.TypeEnum CASHOUTFEE
-
CASHOUTFUNDING
public static final Transfer.TypeEnum CASHOUTFUNDING
-
CASHOUTINSTRUCTION
public static final Transfer.TypeEnum CASHOUTINSTRUCTION
-
CHARGEBACK
public static final Transfer.TypeEnum CHARGEBACK
-
CHARGEBACKCORRECTION
public static final Transfer.TypeEnum CHARGEBACKCORRECTION
-
CHARGEBACKREVERSAL
public static final Transfer.TypeEnum CHARGEBACKREVERSAL
-
CHARGEBACKREVERSALCORRECTION
public static final Transfer.TypeEnum CHARGEBACKREVERSALCORRECTION
-
DEPOSITCORRECTION
public static final Transfer.TypeEnum DEPOSITCORRECTION
-
FEE
public static final Transfer.TypeEnum FEE
-
GRANT
public static final Transfer.TypeEnum GRANT
-
INSTALLMENT
public static final Transfer.TypeEnum INSTALLMENT
-
INSTALLMENTREVERSAL
public static final Transfer.TypeEnum INSTALLMENTREVERSAL
-
INTERNALDIRECTDEBIT
public static final Transfer.TypeEnum INTERNALDIRECTDEBIT
-
INTERNALTRANSFER
public static final Transfer.TypeEnum INTERNALTRANSFER
-
INVOICEDEDUCTION
public static final Transfer.TypeEnum INVOICEDEDUCTION
-
LEFTOVER
public static final Transfer.TypeEnum LEFTOVER
-
MANUALCORRECTION
public static final Transfer.TypeEnum MANUALCORRECTION
-
MISCCOST
public static final Transfer.TypeEnum MISCCOST
-
PAYMENT
public static final Transfer.TypeEnum PAYMENT
-
PAYMENTCOST
public static final Transfer.TypeEnum PAYMENTCOST
-
REFUND
public static final Transfer.TypeEnum REFUND
-
REFUNDREVERSAL
public static final Transfer.TypeEnum REFUNDREVERSAL
-
REPAYMENT
public static final Transfer.TypeEnum REPAYMENT
-
RESERVEADJUSTMENT
public static final Transfer.TypeEnum RESERVEADJUSTMENT
-
SECONDCHARGEBACK
public static final Transfer.TypeEnum SECONDCHARGEBACK
-
SECONDCHARGEBACKCORRECTION
public static final Transfer.TypeEnum SECONDCHARGEBACKCORRECTION
-
-
Method Detail
-
values
public static Transfer.TypeEnum[] 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 (Transfer.TypeEnum c : Transfer.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Transfer.TypeEnum 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<Transfer.TypeEnum>
-
fromValue
public static Transfer.TypeEnum fromValue(String value)
-
-