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