public enum QuoteStatus extends Enum<QuoteStatus>
Enum Constant and Description |
---|
ACTIVE
Active.
|
EXPIRED
Expired.
|
NO_VALUE
Identifies no value.
|
REMOVED
Removed.
|
Modifier and Type | Method and Description |
---|---|
static QuoteStatus |
forValue(byte value) |
byte |
getValue() |
static QuoteStatus |
valueOf(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 NO_VALUE
public static final QuoteStatus REMOVED
public static final QuoteStatus EXPIRED
public static final QuoteStatus ACTIVE
public static QuoteStatus[] values()
for (QuoteStatus c : QuoteStatus.values()) System.out.println(c);
public static QuoteStatus 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 QuoteStatus forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.