Package com.adyen.model
Enum PaymentRequest.RecurringProcessingModelEnum
- java.lang.Object
-
- java.lang.Enum<PaymentRequest.RecurringProcessingModelEnum>
-
- com.adyen.model.PaymentRequest.RecurringProcessingModelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PaymentRequest.RecurringProcessingModelEnum>
- Enclosing class:
- PaymentRequest
public static enum PaymentRequest.RecurringProcessingModelEnum extends Enum<PaymentRequest.RecurringProcessingModelEnum>
how the shopper interacts with the system
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CARD_ON_FILESUBSCRIPTIONUNSCHEDULED_CARD_ON_FILE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static PaymentRequest.RecurringProcessingModelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PaymentRequest.RecurringProcessingModelEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUBSCRIPTION
@SerializedName("Subscription") public static final PaymentRequest.RecurringProcessingModelEnum SUBSCRIPTION
-
CARD_ON_FILE
@SerializedName("CardOnFile") public static final PaymentRequest.RecurringProcessingModelEnum CARD_ON_FILE
-
UNSCHEDULED_CARD_ON_FILE
@SerializedName("UnscheduledCardOnFile") public static final PaymentRequest.RecurringProcessingModelEnum UNSCHEDULED_CARD_ON_FILE
-
-
Method Detail
-
values
public static PaymentRequest.RecurringProcessingModelEnum[] 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 (PaymentRequest.RecurringProcessingModelEnum c : PaymentRequest.RecurringProcessingModelEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentRequest.RecurringProcessingModelEnum 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<PaymentRequest.RecurringProcessingModelEnum>
-
-