public enum QuoteStatus extends java.lang.Enum<QuoteStatus>
| Enum Constant and Description |
|---|
_INVALID |
CANCELED |
EXPIRED |
NOT_APPLICABLE |
REJECTED |
| Modifier and Type | Field and Description |
|---|---|
byte |
val |
| Modifier and Type | Method and Description |
|---|---|
byte |
get() |
static QuoteStatus |
get(byte value) |
static java.util.Collection<QuoteStatus> |
validValues() |
static QuoteStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QuoteStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuoteStatus EXPIRED
public static final QuoteStatus REJECTED
public static final QuoteStatus CANCELED
public static final QuoteStatus NOT_APPLICABLE
public static final QuoteStatus _INVALID
public static QuoteStatus[] values()
for (QuoteStatus c : QuoteStatus.values()) System.out.println(c);
public static QuoteStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic byte get()
public static QuoteStatus get(byte value)
public static java.util.Collection<QuoteStatus> validValues()