Package com.stripe.param
Enum PaymentIntentConfirmParams.PaymentMethodData.Type
- java.lang.Object
-
- java.lang.Enum<PaymentIntentConfirmParams.PaymentMethodData.Type>
-
- com.stripe.param.PaymentIntentConfirmParams.PaymentMethodData.Type
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<PaymentIntentConfirmParams.PaymentMethodData.Type>
- Enclosing class:
- PaymentIntentConfirmParams.PaymentMethodData
public static enum PaymentIntentConfirmParams.PaymentMethodData.Type extends java.lang.Enum<PaymentIntentConfirmParams.PaymentMethodData.Type> implements ApiRequestParams.EnumParam
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTERPAY_CLEARPAY
ALIPAY
AU_BECS_DEBIT
BACS_DEBIT
BANCONTACT
EPS
FPX
GIROPAY
GRABPAY
IDEAL
OXXO
P24
SEPA_DEBIT
SOFORT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
static PaymentIntentConfirmParams.PaymentMethodData.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PaymentIntentConfirmParams.PaymentMethodData.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AFTERPAY_CLEARPAY
@SerializedName("afterpay_clearpay") public static final PaymentIntentConfirmParams.PaymentMethodData.Type AFTERPAY_CLEARPAY
-
ALIPAY
@SerializedName("alipay") public static final PaymentIntentConfirmParams.PaymentMethodData.Type ALIPAY
-
AU_BECS_DEBIT
@SerializedName("au_becs_debit") public static final PaymentIntentConfirmParams.PaymentMethodData.Type AU_BECS_DEBIT
-
BACS_DEBIT
@SerializedName("bacs_debit") public static final PaymentIntentConfirmParams.PaymentMethodData.Type BACS_DEBIT
-
BANCONTACT
@SerializedName("bancontact") public static final PaymentIntentConfirmParams.PaymentMethodData.Type BANCONTACT
-
EPS
@SerializedName("eps") public static final PaymentIntentConfirmParams.PaymentMethodData.Type EPS
-
FPX
@SerializedName("fpx") public static final PaymentIntentConfirmParams.PaymentMethodData.Type FPX
-
GIROPAY
@SerializedName("giropay") public static final PaymentIntentConfirmParams.PaymentMethodData.Type GIROPAY
-
GRABPAY
@SerializedName("grabpay") public static final PaymentIntentConfirmParams.PaymentMethodData.Type GRABPAY
-
IDEAL
@SerializedName("ideal") public static final PaymentIntentConfirmParams.PaymentMethodData.Type IDEAL
-
OXXO
@SerializedName("oxxo") public static final PaymentIntentConfirmParams.PaymentMethodData.Type OXXO
-
P24
@SerializedName("p24") public static final PaymentIntentConfirmParams.PaymentMethodData.Type P24
-
SEPA_DEBIT
@SerializedName("sepa_debit") public static final PaymentIntentConfirmParams.PaymentMethodData.Type SEPA_DEBIT
-
SOFORT
@SerializedName("sofort") public static final PaymentIntentConfirmParams.PaymentMethodData.Type SOFORT
-
-
Method Detail
-
values
public static PaymentIntentConfirmParams.PaymentMethodData.Type[] 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 (PaymentIntentConfirmParams.PaymentMethodData.Type c : PaymentIntentConfirmParams.PaymentMethodData.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentIntentConfirmParams.PaymentMethodData.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
- Specified by:
getValue
in interfaceApiRequestParams.EnumParam
-
-