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