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
-
PAYMENT
public static final Transfer.TypeEnum PAYMENT
-
CAPTURE
public static final Transfer.TypeEnum CAPTURE
-
CAPTUREREVERSAL
public static final Transfer.TypeEnum CAPTUREREVERSAL
-
REFUND
public static final Transfer.TypeEnum REFUND
-
REFUNDREVERSAL
public static final Transfer.TypeEnum REFUNDREVERSAL
-
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
-
SECONDCHARGEBACK
public static final Transfer.TypeEnum SECONDCHARGEBACK
-
SECONDCHARGEBACKCORRECTION
public static final Transfer.TypeEnum SECONDCHARGEBACKCORRECTION
-
ATMWITHDRAWAL
public static final Transfer.TypeEnum ATMWITHDRAWAL
-
ATMWITHDRAWALREVERSAL
public static final Transfer.TypeEnum ATMWITHDRAWALREVERSAL
-
INTERNALTRANSFER
public static final Transfer.TypeEnum INTERNALTRANSFER
-
INTERNALDIRECTDEBIT
public static final Transfer.TypeEnum INTERNALDIRECTDEBIT
-
MANUALCORRECTION
public static final Transfer.TypeEnum MANUALCORRECTION
-
INVOICEDEDUCTION
public static final Transfer.TypeEnum INVOICEDEDUCTION
-
DEPOSITCORRECTION
public static final Transfer.TypeEnum DEPOSITCORRECTION
-
RESERVEADJUSTMENT
public static final Transfer.TypeEnum RESERVEADJUSTMENT
-
BANKTRANSFER
public static final Transfer.TypeEnum BANKTRANSFER
-
BANKDIRECTDEBIT
public static final Transfer.TypeEnum BANKDIRECTDEBIT
-
CARDTRANSFER
public static final Transfer.TypeEnum CARDTRANSFER
-
MISCCOST
public static final Transfer.TypeEnum MISCCOST
-
PAYMENTCOST
public static final Transfer.TypeEnum PAYMENTCOST
-
FEE
public static final Transfer.TypeEnum FEE
-
LEFTOVER
public static final Transfer.TypeEnum LEFTOVER
-
GRANT
public static final Transfer.TypeEnum GRANT
-
CAPITALFUNDSCOLLECTION
public static final Transfer.TypeEnum CAPITALFUNDSCOLLECTION
-
CASHOUTINSTRUCTION
public static final Transfer.TypeEnum CASHOUTINSTRUCTION
-
CASHOUTFEE
public static final Transfer.TypeEnum CASHOUTFEE
-
CASHOUTREPAYMENT
public static final Transfer.TypeEnum CASHOUTREPAYMENT
-
CASHOUTFUNDING
public static final Transfer.TypeEnum CASHOUTFUNDING
-
REPAYMENT
public static final Transfer.TypeEnum REPAYMENT
-
INSTALLMENT
public static final Transfer.TypeEnum INSTALLMENT
-
INSTALLMENTREVERSAL
public static final Transfer.TypeEnum INSTALLMENTREVERSAL
-
BALANCEADJUSTMENT
public static final Transfer.TypeEnum BALANCEADJUSTMENT
-
BALANCEROLLOVER
public static final Transfer.TypeEnum BALANCEROLLOVER
-
BALANCEMIGRATION
public static final Transfer.TypeEnum BALANCEMIGRATION
-
-
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)
-
-