public enum EvaluationMode extends Enum<EvaluationMode>
| Enum Constant and Description |
|---|
BOOLEAN
Boolean mode is default and represents pure OMG defined behavior.
|
INPUT_COMPARISON
Input comparison behavior treats all entry evaluation results as value to compare to the input.
|
| Modifier and Type | Method and Description |
|---|---|
static EvaluationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvaluationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluationMode BOOLEAN
public static final EvaluationMode INPUT_COMPARISON
public static EvaluationMode[] values()
for (EvaluationMode c : EvaluationMode.values()) System.out.println(c);
public static EvaluationMode 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 nullCopyright © 2019 Power Flows. All rights reserved.