public static enum WherePredicateTree.Conjunction extends Enum<WherePredicateTree.Conjunction>
Modifier and Type | Method and Description |
---|---|
static WherePredicateTree.Conjunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WherePredicateTree.Conjunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WherePredicateTree.Conjunction AND
public static final WherePredicateTree.Conjunction OR
public static WherePredicateTree.Conjunction[] values()
for (WherePredicateTree.Conjunction c : WherePredicateTree.Conjunction.values()) System.out.println(c);
public static WherePredicateTree.Conjunction 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.