Package com.adyen.model.checkout
Enum AlmaDetails.FeeTypeEnum
- java.lang.Object
-
- java.lang.Enum<AlmaDetails.FeeTypeEnum>
-
- com.adyen.model.checkout.AlmaDetails.FeeTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AlmaDetails.FeeTypeEnum>
- Enclosing class:
- AlmaDetails
public static enum AlmaDetails.FeeTypeEnum extends Enum<AlmaDetails.FeeTypeEnum>
Alma payment request fee type**
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MERCHANTPAYSSHOPPERPAYS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AlmaDetails.FeeTypeEnumfromValue(String value)StringgetValue()StringtoString()static AlmaDetails.FeeTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AlmaDetails.FeeTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MERCHANTPAYS
public static final AlmaDetails.FeeTypeEnum MERCHANTPAYS
-
SHOPPERPAYS
public static final AlmaDetails.FeeTypeEnum SHOPPERPAYS
-
-
Method Detail
-
values
public static AlmaDetails.FeeTypeEnum[] 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 (AlmaDetails.FeeTypeEnum c : AlmaDetails.FeeTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlmaDetails.FeeTypeEnum 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<AlmaDetails.FeeTypeEnum>
-
fromValue
public static AlmaDetails.FeeTypeEnum fromValue(String value)
-
-