public enum PredicateOperation extends Enum<PredicateOperation>
| Modifier and Type | Method and Description |
|---|---|
static PredicateOperation |
find(String alias) |
String[] |
getAliases() |
static PredicateOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PredicateOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredicateOperation AND
public static final PredicateOperation OR
public static final PredicateOperation NOR
public static final PredicateOperation XOR
public static PredicateOperation[] values()
for (PredicateOperation c : PredicateOperation.values()) System.out.println(c);
public static PredicateOperation 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 String[] getAliases()
public static PredicateOperation find(String alias)
Copyright © 2017. All rights reserved.