Package com.stripe.param
Enum SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval
- java.lang.Object
-
- java.lang.Enum<SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval>
-
- com.stripe.param.SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval>
- Enclosing class:
- SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions
public static enum SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval extends java.lang.Enum<SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval> implements ApiRequestParams.EnumParam
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
static SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAY
@SerializedName("day") public static final SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval DAY
-
MONTH
@SerializedName("month") public static final SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval MONTH
-
SPORADIC
@SerializedName("sporadic") public static final SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval SPORADIC
-
WEEK
@SerializedName("week") public static final SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval WEEK
-
YEAR
@SerializedName("year") public static final SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval YEAR
-
-
Method Detail
-
values
public static SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval[] 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 (SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval c : SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SetupIntentCreateParams.PaymentMethodOptions.Card.MandateOptions.Interval 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
-
-