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