Package com.adyen.model.transfers
Enum TransferEvent.ReasonEnum
- java.lang.Object
-
- java.lang.Enum<TransferEvent.ReasonEnum>
-
- com.adyen.model.transfers.TransferEvent.ReasonEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TransferEvent.ReasonEnum>
- Enclosing class:
- TransferEvent
public static enum TransferEvent.ReasonEnum extends Enum<TransferEvent.ReasonEnum>
The reason for the transfer status.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransferEvent.ReasonEnumfromValue(String value)StringgetValue()StringtoString()static TransferEvent.ReasonEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TransferEvent.ReasonEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNTHIERARCHYNOTACTIVE
public static final TransferEvent.ReasonEnum ACCOUNTHIERARCHYNOTACTIVE
-
AMOUNTLIMITEXCEEDED
public static final TransferEvent.ReasonEnum AMOUNTLIMITEXCEEDED
-
APPROVED
public static final TransferEvent.ReasonEnum APPROVED
-
BALANCEACCOUNTTEMPORARILYBLOCKEDBYTRANSACTIONRULE
public static final TransferEvent.ReasonEnum BALANCEACCOUNTTEMPORARILYBLOCKEDBYTRANSACTIONRULE
-
COUNTERPARTYACCOUNTBLOCKED
public static final TransferEvent.ReasonEnum COUNTERPARTYACCOUNTBLOCKED
-
COUNTERPARTYACCOUNTCLOSED
public static final TransferEvent.ReasonEnum COUNTERPARTYACCOUNTCLOSED
-
COUNTERPARTYACCOUNTNOTFOUND
public static final TransferEvent.ReasonEnum COUNTERPARTYACCOUNTNOTFOUND
-
COUNTERPARTYADDRESSREQUIRED
public static final TransferEvent.ReasonEnum COUNTERPARTYADDRESSREQUIRED
-
COUNTERPARTYBANKTIMEDOUT
public static final TransferEvent.ReasonEnum COUNTERPARTYBANKTIMEDOUT
-
COUNTERPARTYBANKUNAVAILABLE
public static final TransferEvent.ReasonEnum COUNTERPARTYBANKUNAVAILABLE
-
DECLINED
public static final TransferEvent.ReasonEnum DECLINED
-
DECLINEDBYTRANSACTIONRULE
public static final TransferEvent.ReasonEnum DECLINEDBYTRANSACTIONRULE
-
DIRECTDEBITNOTSUPPORTED
public static final TransferEvent.ReasonEnum DIRECTDEBITNOTSUPPORTED
-
ERROR
public static final TransferEvent.ReasonEnum ERROR
-
NOTENOUGHBALANCE
public static final TransferEvent.ReasonEnum NOTENOUGHBALANCE
-
PENDINGAPPROVAL
public static final TransferEvent.ReasonEnum PENDINGAPPROVAL
-
PENDINGEXECUTION
public static final TransferEvent.ReasonEnum PENDINGEXECUTION
-
REFUSEDBYCOUNTERPARTYBANK
public static final TransferEvent.ReasonEnum REFUSEDBYCOUNTERPARTYBANK
-
REFUSEDBYCUSTOMER
public static final TransferEvent.ReasonEnum REFUSEDBYCUSTOMER
-
ROUTENOTFOUND
public static final TransferEvent.ReasonEnum ROUTENOTFOUND
-
SCAFAILED
public static final TransferEvent.ReasonEnum SCAFAILED
-
TRANSFERINSTRUMENTDOESNOTEXIST
public static final TransferEvent.ReasonEnum TRANSFERINSTRUMENTDOESNOTEXIST
-
UNKNOWN
public static final TransferEvent.ReasonEnum UNKNOWN
-
-
Method Detail
-
values
public static TransferEvent.ReasonEnum[] 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 (TransferEvent.ReasonEnum c : TransferEvent.ReasonEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransferEvent.ReasonEnum 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<TransferEvent.ReasonEnum>
-
fromValue
public static TransferEvent.ReasonEnum fromValue(String value)
-
-