public static enum Rule.Operation extends Enum<Rule.Operation>
| Modifier and Type | Method and Description | 
|---|---|
| abstract Object | compute(Object first,
       Object second) | 
| 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 OR
public static final Rule.Operation AND
public static final Rule.Operation INCR
public static final Rule.Operation SET
public static final Rule.Operation NO_OP
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 © 2013–2015 Apache Software Foundation. All rights reserved.