Package com.stripe.param
Enum SubscriptionCreateParams.CollectionMethod
java.lang.Object
java.lang.Enum<SubscriptionCreateParams.CollectionMethod>
com.stripe.param.SubscriptionCreateParams.CollectionMethod
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<SubscriptionCreateParams.CollectionMethod>
,java.lang.constant.Constable
- Enclosing class:
- SubscriptionCreateParams
public static enum SubscriptionCreateParams.CollectionMethod extends java.lang.Enum<SubscriptionCreateParams.CollectionMethod> implements ApiRequestParams.EnumParam
Add all map key/value pairs to `extraParams` map. A map is initialized for the first
`put/putAll` call, and subsequent calls add additional key/value pairs to the original map.
See
SubscriptionCreateParams.TransferData.extraParams
for the field documentation.-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description CHARGE_AUTOMATICALLY
SEND_INVOICE
-
Method Summary
Modifier and Type Method Description java.lang.String
getValue()
static SubscriptionCreateParams.CollectionMethod
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SubscriptionCreateParams.CollectionMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CHARGE_AUTOMATICALLY
@SerializedName("charge_automatically") public static final SubscriptionCreateParams.CollectionMethod CHARGE_AUTOMATICALLY -
SEND_INVOICE
@SerializedName("send_invoice") public static final SubscriptionCreateParams.CollectionMethod SEND_INVOICE
-
-
Method Details
-
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
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
-