public static enum Customer.PaymentMethod.Status extends Enum<Customer.PaymentMethod.Status>
| Enum Constant and Description |
|---|
_UNKNOWN |
EXPIRED |
EXPIRING |
INVALID |
PENDING_VERIFICATION |
VALID |
| Modifier and Type | Method and Description |
|---|---|
static Customer.PaymentMethod.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Customer.PaymentMethod.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Customer.PaymentMethod.Status VALID
public static final Customer.PaymentMethod.Status EXPIRING
public static final Customer.PaymentMethod.Status EXPIRED
public static final Customer.PaymentMethod.Status INVALID
public static final Customer.PaymentMethod.Status PENDING_VERIFICATION
public static final Customer.PaymentMethod.Status _UNKNOWN
public static Customer.PaymentMethod.Status[] values()
for (Customer.PaymentMethod.Status c : Customer.PaymentMethod.Status.values()) System.out.println(c);
public static Customer.PaymentMethod.Status valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023 ChargeBee. All rights reserved.