public static enum BAQ.CalculationMode extends java.lang.Enum<BAQ.CalculationMode>
Enum Constant and Description |
---|
CALCULATE_AS_NECESSARY |
OFF |
RECALCULATE |
Modifier and Type | Method and Description |
---|---|
static BAQ.CalculationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BAQ.CalculationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BAQ.CalculationMode OFF
public static final BAQ.CalculationMode CALCULATE_AS_NECESSARY
public static final BAQ.CalculationMode RECALCULATE
public static BAQ.CalculationMode[] values()
for (BAQ.CalculationMode c : BAQ.CalculationMode.values()) System.out.println(c);
public static BAQ.CalculationMode 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 null