Package com.adyen.model.management
Enum SplitConfigurationLogic.InterchangeEnum
- java.lang.Object
-
- java.lang.Enum<SplitConfigurationLogic.InterchangeEnum>
-
- com.adyen.model.management.SplitConfigurationLogic.InterchangeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<SplitConfigurationLogic.InterchangeEnum>
- Enclosing class:
- SplitConfigurationLogic
public static enum SplitConfigurationLogic.InterchangeEnum extends Enum<SplitConfigurationLogic.InterchangeEnum>
Deducts the interchange fee from specified balance account. Possible values: **deductFromLiableAccount**, **deductFromOneBalanceAccount**.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEDUCTFROMLIABLEACCOUNTDEDUCTFROMONEBALANCEACCOUNT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SplitConfigurationLogic.InterchangeEnumfromValue(String value)StringgetValue()StringtoString()static SplitConfigurationLogic.InterchangeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static SplitConfigurationLogic.InterchangeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEDUCTFROMLIABLEACCOUNT
public static final SplitConfigurationLogic.InterchangeEnum DEDUCTFROMLIABLEACCOUNT
-
DEDUCTFROMONEBALANCEACCOUNT
public static final SplitConfigurationLogic.InterchangeEnum DEDUCTFROMONEBALANCEACCOUNT
-
-
Method Detail
-
values
public static SplitConfigurationLogic.InterchangeEnum[] 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 (SplitConfigurationLogic.InterchangeEnum c : SplitConfigurationLogic.InterchangeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SplitConfigurationLogic.InterchangeEnum 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<SplitConfigurationLogic.InterchangeEnum>
-
fromValue
public static SplitConfigurationLogic.InterchangeEnum fromValue(String value)
-
-