Package com.adyen.model.transferwebhooks
Enum BankCategoryData.PriorityEnum
- java.lang.Object
-
- java.lang.Enum<BankCategoryData.PriorityEnum>
-
- com.adyen.model.transferwebhooks.BankCategoryData.PriorityEnum
-
- All Implemented Interfaces:
Serializable,Comparable<BankCategoryData.PriorityEnum>
- Enclosing class:
- BankCategoryData
public static enum BankCategoryData.PriorityEnum extends Enum<BankCategoryData.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. Required for transfers with `category` **bank**. 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 BankCategoryData.PriorityEnumfromValue(String value)StringgetValue()StringtoString()static BankCategoryData.PriorityEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static BankCategoryData.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 BankCategoryData.PriorityEnum CROSSBORDER
-
FAST
public static final BankCategoryData.PriorityEnum FAST
-
INSTANT
public static final BankCategoryData.PriorityEnum INSTANT
-
INTERNAL
public static final BankCategoryData.PriorityEnum INTERNAL
-
REGULAR
public static final BankCategoryData.PriorityEnum REGULAR
-
WIRE
public static final BankCategoryData.PriorityEnum WIRE
-
-
Method Detail
-
values
public static BankCategoryData.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 (BankCategoryData.PriorityEnum c : BankCategoryData.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 BankCategoryData.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<BankCategoryData.PriorityEnum>
-
fromValue
public static BankCategoryData.PriorityEnum fromValue(String value)
-
-