Package com.adyen.model.management
Enum SplitConfigurationRule.CardRegionEnum
- java.lang.Object
-
- java.lang.Enum<SplitConfigurationRule.CardRegionEnum>
-
- com.adyen.model.management.SplitConfigurationRule.CardRegionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<SplitConfigurationRule.CardRegionEnum>
- Enclosing class:
- SplitConfigurationRule
public static enum SplitConfigurationRule.CardRegionEnum extends Enum<SplitConfigurationRule.CardRegionEnum>
The card region condition that determines whether the [split logic](https://docs.adyen.com/api-explorer/Management/latest/post/merchants/(merchantId)/splitConfigurations#request-rules-splitLogic) applies to the transaction. > This condition is in pilot phase, and not yet available for all platforms. Possible values: * **domestic**: The card issuer and the store where the transaction is processed are registered in the same country. * **international**: The card issuer and the store where the transaction is processed are registered in different countries or regions. Includes all **interRegional** and **intraRegional** transactions. * **interRegional**: The card issuer and the store where the transaction is processed are registered in different regions. * **intraRegional**: The card issuer and the store where the transaction is processed are registered in different countries, but in the same region. * **intraEEA**: The card issuer and the store where the transaction is processed are registered in different countries, but in the European Economic Area (EEA). * **ANY**: Applies to all transactions, regardless of the processing and issuing country/region.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANYDOMESTICINTERNATIONALINTERREGIONALINTRAEEAINTRAREGIONAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SplitConfigurationRule.CardRegionEnumfromValue(String value)StringgetValue()StringtoString()static SplitConfigurationRule.CardRegionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static SplitConfigurationRule.CardRegionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERNATIONAL
public static final SplitConfigurationRule.CardRegionEnum INTERNATIONAL
-
INTRAEEA
public static final SplitConfigurationRule.CardRegionEnum INTRAEEA
-
INTRAREGIONAL
public static final SplitConfigurationRule.CardRegionEnum INTRAREGIONAL
-
INTERREGIONAL
public static final SplitConfigurationRule.CardRegionEnum INTERREGIONAL
-
DOMESTIC
public static final SplitConfigurationRule.CardRegionEnum DOMESTIC
-
ANY
public static final SplitConfigurationRule.CardRegionEnum ANY
-
-
Method Detail
-
values
public static SplitConfigurationRule.CardRegionEnum[] 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 (SplitConfigurationRule.CardRegionEnum c : SplitConfigurationRule.CardRegionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SplitConfigurationRule.CardRegionEnum 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<SplitConfigurationRule.CardRegionEnum>
-
fromValue
public static SplitConfigurationRule.CardRegionEnum fromValue(String value)
-
-