Package com.adyen.model.management
Enum SplitConfigurationRule.ShopperInteractionEnum
- java.lang.Object
-
- java.lang.Enum<SplitConfigurationRule.ShopperInteractionEnum>
-
- com.adyen.model.management.SplitConfigurationRule.ShopperInteractionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<SplitConfigurationRule.ShopperInteractionEnum>
- Enclosing class:
- SplitConfigurationRule
public static enum SplitConfigurationRule.ShopperInteractionEnum extends Enum<SplitConfigurationRule.ShopperInteractionEnum>
The sales channel condition that defines whether the split logic applies. Possible values: * **Ecommerce**: Online transactions where the cardholder is present. * **ContAuth**: Card on file and/or subscription transactions, where the cardholder is known to the merchant (returning customer). * **Moto**: Mail-order and telephone-order transactions where the customer is in contact with the merchant via email or telephone. * **POS**: Point-of-sale transactions where the customer is physically present to make a payment using a secure payment terminal. * **ANY**: All sales channels.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SplitConfigurationRule.ShopperInteractionEnumfromValue(String value)StringgetValue()StringtoString()static SplitConfigurationRule.ShopperInteractionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static SplitConfigurationRule.ShopperInteractionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ECOMMERCE
public static final SplitConfigurationRule.ShopperInteractionEnum ECOMMERCE
-
CONTAUTH
public static final SplitConfigurationRule.ShopperInteractionEnum CONTAUTH
-
MOTO
public static final SplitConfigurationRule.ShopperInteractionEnum MOTO
-
POS
public static final SplitConfigurationRule.ShopperInteractionEnum POS
-
ANY
public static final SplitConfigurationRule.ShopperInteractionEnum ANY
-
-
Method Detail
-
values
public static SplitConfigurationRule.ShopperInteractionEnum[] 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.ShopperInteractionEnum c : SplitConfigurationRule.ShopperInteractionEnum.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.ShopperInteractionEnum 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.ShopperInteractionEnum>
-
fromValue
public static SplitConfigurationRule.ShopperInteractionEnum fromValue(String value)
-
-