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