public enum GenericEvaluationResult extends Enum<GenericEvaluationResult>
| Enum Constant and Description |
|---|
ALWAYS_FALSE
The evaluation result for each packet in the group will always be
false. |
ALWAYS_TRUE
The evaluation result for each packet in the group will always be
true. |
VARY
The evaluation result for each packet in the group will vary depending on the packet
properties.
|
| Modifier and Type | Method and Description |
|---|---|
static GenericEvaluationResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenericEvaluationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenericEvaluationResult ALWAYS_TRUE
true.public static final GenericEvaluationResult ALWAYS_FALSE
false.public static final GenericEvaluationResult VARY
public static GenericEvaluationResult[] values()
for (GenericEvaluationResult c : GenericEvaluationResult.values()) System.out.println(c);
public static GenericEvaluationResult 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 null© Copyright IBM Corp. 2016. All rights reserved.