Package com.stripe.param
Enum TokenCreateParams.Account.BusinessType
- java.lang.Object
-
- java.lang.Enum<TokenCreateParams.Account.BusinessType>
-
- com.stripe.param.TokenCreateParams.Account.BusinessType
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<TokenCreateParams.Account.BusinessType>
,java.lang.constant.Constable
- Enclosing class:
- TokenCreateParams.Account
public static enum TokenCreateParams.Account.BusinessType extends java.lang.Enum<TokenCreateParams.Account.BusinessType> implements ApiRequestParams.EnumParam
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPANY
GOVERNMENT_ENTITY
INDIVIDUAL
NON_PROFIT
-
Method Summary
Modifier and Type Method Description java.lang.String
getValue()
static TokenCreateParams.Account.BusinessType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TokenCreateParams.Account.BusinessType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPANY
@SerializedName("company") public static final TokenCreateParams.Account.BusinessType COMPANY
-
GOVERNMENT_ENTITY
@SerializedName("government_entity") public static final TokenCreateParams.Account.BusinessType GOVERNMENT_ENTITY
-
INDIVIDUAL
@SerializedName("individual") public static final TokenCreateParams.Account.BusinessType INDIVIDUAL
-
NON_PROFIT
@SerializedName("non_profit") public static final TokenCreateParams.Account.BusinessType NON_PROFIT
-
-
Method Detail
-
values
public static TokenCreateParams.Account.BusinessType[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TokenCreateParams.Account.BusinessType 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
-
-