public enum ConsolidationStatus extends java.lang.Enum<ConsolidationStatus>
This enumeration represents the consolidation status.
Enum Constant and Description |
---|
GOOD |
NOT_READY |
SUFFICIENT |
VERY_GOOD |
Modifier and Type | Method and Description |
---|---|
static ConsolidationStatus |
fromInteger(int value)
Converts an integer between 0 and 3 to a consolidation status.
|
int |
value()
Gets the enumaration object value.
|
static ConsolidationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConsolidationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsolidationStatus NOT_READY
public static final ConsolidationStatus SUFFICIENT
public static final ConsolidationStatus GOOD
public static final ConsolidationStatus VERY_GOOD
public static ConsolidationStatus[] values()
for (ConsolidationStatus c : ConsolidationStatus.values()) System.out.println(c);
public static ConsolidationStatus 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 int value()
Gets the enumaration object value.
public static ConsolidationStatus fromInteger(int value)
Converts an integer between 0 and 3 to a consolidation status.
value
-