Package com.adyen.model.management
Enum NyceInfo.ProcessingTypeEnum
- java.lang.Object
-
- java.lang.Enum<NyceInfo.ProcessingTypeEnum>
-
- com.adyen.model.management.NyceInfo.ProcessingTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<NyceInfo.ProcessingTypeEnum>
- Enclosing class:
- NyceInfo
public static enum NyceInfo.ProcessingTypeEnum extends Enum<NyceInfo.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 NyceInfo.ProcessingTypeEnumfromValue(String value)StringgetValue()StringtoString()static NyceInfo.ProcessingTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static NyceInfo.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 NyceInfo.ProcessingTypeEnum BILLPAY
-
ECOM
public static final NyceInfo.ProcessingTypeEnum ECOM
-
POS
public static final NyceInfo.ProcessingTypeEnum POS
-
-
Method Detail
-
values
public static NyceInfo.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 (NyceInfo.ProcessingTypeEnum c : NyceInfo.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 NyceInfo.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<NyceInfo.ProcessingTypeEnum>
-
fromValue
public static NyceInfo.ProcessingTypeEnum fromValue(String value)
-
-