public static enum PredicateLeaf.Operator extends Enum<PredicateLeaf.Operator>
| Enum Constant and Description | 
|---|
| BETWEEN | 
| EQUALS | 
| IN | 
| IS_NULL | 
| LESS_THAN | 
| LESS_THAN_EQUALS | 
| NULL_SAFE_EQUALS | 
| Modifier and Type | Method and Description | 
|---|---|
| static PredicateLeaf.Operator | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PredicateLeaf.Operator[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PredicateLeaf.Operator EQUALS
public static final PredicateLeaf.Operator NULL_SAFE_EQUALS
public static final PredicateLeaf.Operator LESS_THAN
public static final PredicateLeaf.Operator LESS_THAN_EQUALS
public static final PredicateLeaf.Operator IN
public static final PredicateLeaf.Operator BETWEEN
public static final PredicateLeaf.Operator IS_NULL
public static PredicateLeaf.Operator[] values()
for (PredicateLeaf.Operator c : PredicateLeaf.Operator.values()) System.out.println(c);
public static PredicateLeaf.Operator 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 © 2016 The Apache Software Foundation. All rights reserved.