Package com.adyen.model.transferwebhooks
Enum AmountAdjustment.AmountAdjustmentTypeEnum
- java.lang.Object
-
- java.lang.Enum<AmountAdjustment.AmountAdjustmentTypeEnum>
-
- com.adyen.model.transferwebhooks.AmountAdjustment.AmountAdjustmentTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AmountAdjustment.AmountAdjustmentTypeEnum>
- Enclosing class:
- AmountAdjustment
public static enum AmountAdjustment.AmountAdjustmentTypeEnum extends Enum<AmountAdjustment.AmountAdjustmentTypeEnum>
The type of markup that is applied to an authorised payment. Possible values: **exchange**, **forexMarkup**, **authHoldReserve**, **atmMarkup**.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATMMARKUPAUTHHOLDRESERVEEXCHANGEFOREXMARKUP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AmountAdjustment.AmountAdjustmentTypeEnumfromValue(String value)StringgetValue()StringtoString()static AmountAdjustment.AmountAdjustmentTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AmountAdjustment.AmountAdjustmentTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATMMARKUP
public static final AmountAdjustment.AmountAdjustmentTypeEnum ATMMARKUP
-
AUTHHOLDRESERVE
public static final AmountAdjustment.AmountAdjustmentTypeEnum AUTHHOLDRESERVE
-
EXCHANGE
public static final AmountAdjustment.AmountAdjustmentTypeEnum EXCHANGE
-
FOREXMARKUP
public static final AmountAdjustment.AmountAdjustmentTypeEnum FOREXMARKUP
-
-
Method Detail
-
values
public static AmountAdjustment.AmountAdjustmentTypeEnum[] 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 (AmountAdjustment.AmountAdjustmentTypeEnum c : AmountAdjustment.AmountAdjustmentTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AmountAdjustment.AmountAdjustmentTypeEnum 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<AmountAdjustment.AmountAdjustmentTypeEnum>
-
fromValue
public static AmountAdjustment.AmountAdjustmentTypeEnum fromValue(String value)
-
-