public enum QuotingStatus extends Enum<QuotingStatus>
Enum Constant and Description |
---|
CLOSED_INACTIVE
Closed/Inactive.
|
NO_VALUE
Identifies no value.
|
OPEN_ACTIVE
Open/Active.
|
OPEN_IDLE
Open/Working.
|
Modifier and Type | Method and Description |
---|---|
static QuotingStatus |
forValue(byte value) |
byte |
getValue() |
static QuotingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuotingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuotingStatus NO_VALUE
public static final QuotingStatus OPEN_ACTIVE
public static final QuotingStatus OPEN_IDLE
public static final QuotingStatus CLOSED_INACTIVE
public static QuotingStatus[] values()
for (QuotingStatus c : QuotingStatus.values()) System.out.println(c);
public static QuotingStatus 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 QuotingStatus forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.