public enum EvaluationType extends Enum<EvaluationType>
Enum Constant and Description |
---|
DEFAULT
Use current values when evaluating the expression.
|
ESTIMATED
Use estimated/future values when evaluating the expression.
|
OLD
Use old/previous values when evaluating the expression.
|
Modifier and Type | Method and Description |
---|---|
byte |
getType()
Returns the corresponding byte value for the evaluation type.
|
static EvaluationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvaluationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluationType DEFAULT
public static final EvaluationType OLD
public static final EvaluationType ESTIMATED
public static EvaluationType[] values()
for (EvaluationType c : EvaluationType.values()) System.out.println(c);
public static EvaluationType 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 getType()
Copyright © 2016. All rights reserved.