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