Package com.adyen.model
Enum AbstractPaymentRequest.ShopperInteractionEnum
- java.lang.Object
-
- java.lang.Enum<AbstractPaymentRequest.ShopperInteractionEnum>
-
- com.adyen.model.AbstractPaymentRequest.ShopperInteractionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractPaymentRequest.ShopperInteractionEnum>
- Enclosing class:
- AbstractPaymentRequest<T extends AbstractPaymentRequest<T>>
public static enum AbstractPaymentRequest.ShopperInteractionEnum extends Enum<AbstractPaymentRequest.ShopperInteractionEnum>
how the shopper interacts with the system
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static AbstractPaymentRequest.ShopperInteractionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractPaymentRequest.ShopperInteractionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ECOMMERCE
@SerializedName("Ecommerce") public static final AbstractPaymentRequest.ShopperInteractionEnum ECOMMERCE
-
CONTAUTH
@SerializedName("ContAuth") public static final AbstractPaymentRequest.ShopperInteractionEnum CONTAUTH
-
MOTO
@SerializedName("Moto") public static final AbstractPaymentRequest.ShopperInteractionEnum MOTO
-
-
Method Detail
-
values
public static AbstractPaymentRequest.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 (AbstractPaymentRequest.ShopperInteractionEnum c : AbstractPaymentRequest.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 AbstractPaymentRequest.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
-
toString
public String toString()
- Overrides:
toStringin classEnum<AbstractPaymentRequest.ShopperInteractionEnum>
-
-