public enum QuoteEntryStatus extends Enum<QuoteEntryStatus>
Enum Constant and Description |
---|
ACCEPTED
Accepted with warning.
|
NO_VALUE
Identifies no value.
|
PENDING
Pending.
|
REJECTED
Rejected.
|
REMOVED_AND_REJECTED
Removed from Market.
|
Modifier and Type | Method and Description |
---|---|
static QuoteEntryStatus |
forValue(byte value) |
byte |
getValue() |
static QuoteEntryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuoteEntryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuoteEntryStatus NO_VALUE
public static final QuoteEntryStatus ACCEPTED
public static final QuoteEntryStatus REJECTED
public static final QuoteEntryStatus REMOVED_AND_REJECTED
public static final QuoteEntryStatus PENDING
public static QuoteEntryStatus[] values()
for (QuoteEntryStatus c : QuoteEntryStatus.values()) System.out.println(c);
public static QuoteEntryStatus 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 nullpublic byte getValue()
public static QuoteEntryStatus forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.