public static enum PaymentIntent.Status extends Enum<PaymentIntent.Status>
| Enum Constant and Description |
|---|
_UNKNOWN |
AUTHORIZED |
CONSUMED |
EXPIRED |
IN_PROGRESS |
INITED |
| Modifier and Type | Method and Description |
|---|---|
static PaymentIntent.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentIntent.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentIntent.Status INITED
public static final PaymentIntent.Status IN_PROGRESS
public static final PaymentIntent.Status AUTHORIZED
public static final PaymentIntent.Status CONSUMED
public static final PaymentIntent.Status EXPIRED
public static final PaymentIntent.Status _UNKNOWN
public static PaymentIntent.Status[] values()
for (PaymentIntent.Status c : PaymentIntent.Status.values()) System.out.println(c);
public static PaymentIntent.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.