Package com.stripe.param
Enum InvoiceCreateParams.PendingInvoiceItemsBehavior
- java.lang.Object
-
- java.lang.Enum<InvoiceCreateParams.PendingInvoiceItemsBehavior>
-
- com.stripe.param.InvoiceCreateParams.PendingInvoiceItemsBehavior
-
- All Implemented Interfaces:
ApiRequestParams.EnumParam
,java.io.Serializable
,java.lang.Comparable<InvoiceCreateParams.PendingInvoiceItemsBehavior>
- Enclosing class:
- InvoiceCreateParams
public static enum InvoiceCreateParams.PendingInvoiceItemsBehavior extends java.lang.Enum<InvoiceCreateParams.PendingInvoiceItemsBehavior> implements ApiRequestParams.EnumParam
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXCLUDE
INCLUDE
INCLUDE_AND_REQUIRE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
static InvoiceCreateParams.PendingInvoiceItemsBehavior
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InvoiceCreateParams.PendingInvoiceItemsBehavior[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXCLUDE
@SerializedName("exclude") public static final InvoiceCreateParams.PendingInvoiceItemsBehavior EXCLUDE
-
INCLUDE
@SerializedName("include") public static final InvoiceCreateParams.PendingInvoiceItemsBehavior INCLUDE
-
INCLUDE_AND_REQUIRE
@SerializedName("include_and_require") public static final InvoiceCreateParams.PendingInvoiceItemsBehavior INCLUDE_AND_REQUIRE
-
-
Method Detail
-
values
public static InvoiceCreateParams.PendingInvoiceItemsBehavior[] 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 (InvoiceCreateParams.PendingInvoiceItemsBehavior c : InvoiceCreateParams.PendingInvoiceItemsBehavior.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InvoiceCreateParams.PendingInvoiceItemsBehavior 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
-
-