Package com.adyen.model.management
Enum PulseResponseInfo.ProcessingTypeEnum
- java.lang.Object
-
- java.lang.Enum<PulseResponseInfo.ProcessingTypeEnum>
-
- com.adyen.model.management.PulseResponseInfo.ProcessingTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PulseResponseInfo.ProcessingTypeEnum>
- Enclosing class:
- PulseResponseInfo
public static enum PulseResponseInfo.ProcessingTypeEnum extends Enum<PulseResponseInfo.ProcessingTypeEnum>
The type of transactions processed over this payment method. Allowed values: - **pos** for in-person payments. - **billpay** for subscription payments, both the initial payment and the later recurring payments. These transactions have `recurringProcessingModel` **Subscription**. - **ecom** for all other card not present transactions. This includes non-recurring transactions and transactions with `recurringProcessingModel` **CardOnFile** or **UnscheduledCardOnFile**.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PulseResponseInfo.ProcessingTypeEnumfromValue(String value)StringgetValue()StringtoString()static PulseResponseInfo.ProcessingTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PulseResponseInfo.ProcessingTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BILLPAY
public static final PulseResponseInfo.ProcessingTypeEnum BILLPAY
-
ECOM
public static final PulseResponseInfo.ProcessingTypeEnum ECOM
-
POS
public static final PulseResponseInfo.ProcessingTypeEnum POS
-
-
Method Detail
-
values
public static PulseResponseInfo.ProcessingTypeEnum[] 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 (PulseResponseInfo.ProcessingTypeEnum c : PulseResponseInfo.ProcessingTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PulseResponseInfo.ProcessingTypeEnum 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<PulseResponseInfo.ProcessingTypeEnum>
-
fromValue
public static PulseResponseInfo.ProcessingTypeEnum fromValue(String value)
-
-