Package com.stripe.param
Enum PaymentMethodCreateParams.Ideal.Bank
- java.lang.Object
-
- java.lang.Enum<PaymentMethodCreateParams.Ideal.Bank>
-
- com.stripe.param.PaymentMethodCreateParams.Ideal.Bank
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam,java.io.Serializable,java.lang.Comparable<PaymentMethodCreateParams.Ideal.Bank>
- Enclosing class:
- PaymentMethodCreateParams.Ideal
public static enum PaymentMethodCreateParams.Ideal.Bank extends java.lang.Enum<PaymentMethodCreateParams.Ideal.Bank> implements ApiRequestParams.EnumParam
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABN_AMROASN_BANKBUNQHANDELSBANKENINGKNABMONEYOURABOBANKREGIOBANKREVOLUTSNS_BANKTRIODOS_BANKVAN_LANSCHOT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()static PaymentMethodCreateParams.Ideal.BankvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PaymentMethodCreateParams.Ideal.Bank[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABN_AMRO
@SerializedName("abn_amro") public static final PaymentMethodCreateParams.Ideal.Bank ABN_AMRO
-
ASN_BANK
@SerializedName("asn_bank") public static final PaymentMethodCreateParams.Ideal.Bank ASN_BANK
-
BUNQ
@SerializedName("bunq") public static final PaymentMethodCreateParams.Ideal.Bank BUNQ
-
HANDELSBANKEN
@SerializedName("handelsbanken") public static final PaymentMethodCreateParams.Ideal.Bank HANDELSBANKEN
-
ING
@SerializedName("ing") public static final PaymentMethodCreateParams.Ideal.Bank ING
-
KNAB
@SerializedName("knab") public static final PaymentMethodCreateParams.Ideal.Bank KNAB
-
MONEYOU
@SerializedName("moneyou") public static final PaymentMethodCreateParams.Ideal.Bank MONEYOU
-
RABOBANK
@SerializedName("rabobank") public static final PaymentMethodCreateParams.Ideal.Bank RABOBANK
-
REGIOBANK
@SerializedName("regiobank") public static final PaymentMethodCreateParams.Ideal.Bank REGIOBANK
-
REVOLUT
@SerializedName("revolut") public static final PaymentMethodCreateParams.Ideal.Bank REVOLUT
-
SNS_BANK
@SerializedName("sns_bank") public static final PaymentMethodCreateParams.Ideal.Bank SNS_BANK
-
TRIODOS_BANK
@SerializedName("triodos_bank") public static final PaymentMethodCreateParams.Ideal.Bank TRIODOS_BANK
-
VAN_LANSCHOT
@SerializedName("van_lanschot") public static final PaymentMethodCreateParams.Ideal.Bank VAN_LANSCHOT
-
-
Method Detail
-
values
public static PaymentMethodCreateParams.Ideal.Bank[] 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 (PaymentMethodCreateParams.Ideal.Bank c : PaymentMethodCreateParams.Ideal.Bank.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentMethodCreateParams.Ideal.Bank 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:
getValuein interfaceApiRequestParams.EnumParam
-
-