Package com.stripe.param
Enum PaymentIntentUpdateParams.PaymentMethodData.Type
- java.lang.Object
-
- java.lang.Enum<PaymentIntentUpdateParams.PaymentMethodData.Type>
-
- com.stripe.param.PaymentIntentUpdateParams.PaymentMethodData.Type
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<PaymentIntentUpdateParams.PaymentMethodData.Type>
- Enclosing class:
- PaymentIntentUpdateParams.PaymentMethodData
public static enum PaymentIntentUpdateParams.PaymentMethodData.Type extends java.lang.Enum<PaymentIntentUpdateParams.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 PaymentIntentUpdateParams.PaymentMethodData.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PaymentIntentUpdateParams.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 PaymentIntentUpdateParams.PaymentMethodData.Type AFTERPAY_CLEARPAY
-
ALIPAY
@SerializedName("alipay") public static final PaymentIntentUpdateParams.PaymentMethodData.Type ALIPAY
-
AU_BECS_DEBIT
@SerializedName("au_becs_debit") public static final PaymentIntentUpdateParams.PaymentMethodData.Type AU_BECS_DEBIT
-
BACS_DEBIT
@SerializedName("bacs_debit") public static final PaymentIntentUpdateParams.PaymentMethodData.Type BACS_DEBIT
-
BANCONTACT
@SerializedName("bancontact") public static final PaymentIntentUpdateParams.PaymentMethodData.Type BANCONTACT
-
EPS
@SerializedName("eps") public static final PaymentIntentUpdateParams.PaymentMethodData.Type EPS
-
FPX
@SerializedName("fpx") public static final PaymentIntentUpdateParams.PaymentMethodData.Type FPX
-
GIROPAY
@SerializedName("giropay") public static final PaymentIntentUpdateParams.PaymentMethodData.Type GIROPAY
-
GRABPAY
@SerializedName("grabpay") public static final PaymentIntentUpdateParams.PaymentMethodData.Type GRABPAY
-
IDEAL
@SerializedName("ideal") public static final PaymentIntentUpdateParams.PaymentMethodData.Type IDEAL
-
OXXO
@SerializedName("oxxo") public static final PaymentIntentUpdateParams.PaymentMethodData.Type OXXO
-
P24
@SerializedName("p24") public static final PaymentIntentUpdateParams.PaymentMethodData.Type P24
-
SEPA_DEBIT
@SerializedName("sepa_debit") public static final PaymentIntentUpdateParams.PaymentMethodData.Type SEPA_DEBIT
-
SOFORT
@SerializedName("sofort") public static final PaymentIntentUpdateParams.PaymentMethodData.Type SOFORT
-
-
Method Detail
-
values
public static PaymentIntentUpdateParams.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 (PaymentIntentUpdateParams.PaymentMethodData.Type c : PaymentIntentUpdateParams.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 PaymentIntentUpdateParams.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
-
-