Package com.adyen.model.balanceplatform
Enum TransferRoute.PriorityEnum
- java.lang.Object
-
- java.lang.Enum<TransferRoute.PriorityEnum>
-
- com.adyen.model.balanceplatform.TransferRoute.PriorityEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TransferRoute.PriorityEnum>
- Enclosing class:
- TransferRoute
public static enum TransferRoute.PriorityEnum extends Enum<TransferRoute.PriorityEnum>
The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Possible values: * **regular**: for normal, low-value transactions. * **fast**: a faster way to transfer funds, but the fees are higher. Recommended for high-priority, low-value transactions. * **wire**: the fastest way to transfer funds, but this has the highest fees. Recommended for high-priority, high-value transactions. * **instant**: for instant funds transfers in [SEPA countries](https://www.ecb.europa.eu/paym/integration/retail/sepa/html/index.en.html). * **crossBorder**: for high-value transfers to a recipient in a different country. * **internal**: for transfers to an Adyen-issued business bank account (by bank account number/IBAN).
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransferRoute.PriorityEnumfromValue(String value)StringgetValue()StringtoString()static TransferRoute.PriorityEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TransferRoute.PriorityEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CROSSBORDER
public static final TransferRoute.PriorityEnum CROSSBORDER
-
FAST
public static final TransferRoute.PriorityEnum FAST
-
INSTANT
public static final TransferRoute.PriorityEnum INSTANT
-
INTERNAL
public static final TransferRoute.PriorityEnum INTERNAL
-
REGULAR
public static final TransferRoute.PriorityEnum REGULAR
-
WIRE
public static final TransferRoute.PriorityEnum WIRE
-
-
Method Detail
-
values
public static TransferRoute.PriorityEnum[] 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 (TransferRoute.PriorityEnum c : TransferRoute.PriorityEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransferRoute.PriorityEnum 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<TransferRoute.PriorityEnum>
-
fromValue
public static TransferRoute.PriorityEnum fromValue(String value)
-
-