Package com.adyen.model.transfers
Enum TransferInfo.PrioritiesEnum
- java.lang.Object
-
- java.lang.Enum<TransferInfo.PrioritiesEnum>
-
- com.adyen.model.transfers.TransferInfo.PrioritiesEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TransferInfo.PrioritiesEnum>
- Enclosing class:
- TransferInfo
public static enum TransferInfo.PrioritiesEnum extends Enum<TransferInfo.PrioritiesEnum>
Gets or Sets priorities
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransferInfo.PrioritiesEnumfromValue(String value)StringgetValue()StringtoString()static TransferInfo.PrioritiesEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TransferInfo.PrioritiesEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CROSSBORDER
public static final TransferInfo.PrioritiesEnum CROSSBORDER
-
FAST
public static final TransferInfo.PrioritiesEnum FAST
-
INSTANT
public static final TransferInfo.PrioritiesEnum INSTANT
-
INTERNAL
public static final TransferInfo.PrioritiesEnum INTERNAL
-
REGULAR
public static final TransferInfo.PrioritiesEnum REGULAR
-
WIRE
public static final TransferInfo.PrioritiesEnum WIRE
-
-
Method Detail
-
values
public static TransferInfo.PrioritiesEnum[] 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 (TransferInfo.PrioritiesEnum c : TransferInfo.PrioritiesEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransferInfo.PrioritiesEnum 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<TransferInfo.PrioritiesEnum>
-
fromValue
public static TransferInfo.PrioritiesEnum fromValue(String value)
-
-