Serializable, Comparable<Rule.Operation>public static enum Rule.Operation extends Enum<Rule.Operation>
| Enum Constant | Description |
|---|---|
EXCLUDE |
|
EXCLUDE_AND_TERMINATE |
|
INCLUDE |
|
NOOP |
| Modifier and Type | Method | Description |
|---|---|---|
static Rule.Operation |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Rule.Operation[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rule.Operation EXCLUDE
public static final Rule.Operation INCLUDE
public static final Rule.Operation NOOP
public static final Rule.Operation EXCLUDE_AND_TERMINATE
public static Rule.Operation[] values()
for (Rule.Operation c : Rule.Operation.values()) System.out.println(c);
public static Rule.Operation 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. All rights reserved.