public static enum PaymentSource.Status extends Enum<PaymentSource.Status>
Enum Constant and Description |
---|
_UNKNOWN |
EXPIRED |
EXPIRING |
INVALID |
PENDING_VERIFICATION |
VALID |
Modifier and Type | Method and Description |
---|---|
static PaymentSource.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentSource.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentSource.Status VALID
public static final PaymentSource.Status EXPIRING
public static final PaymentSource.Status EXPIRED
public static final PaymentSource.Status INVALID
public static final PaymentSource.Status PENDING_VERIFICATION
public static final PaymentSource.Status _UNKNOWN
public static PaymentSource.Status[] values()
for (PaymentSource.Status c : PaymentSource.Status.values()) System.out.println(c);
public static PaymentSource.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 © 2022 ChargeBee. All rights reserved.