public enum QueryOperator extends Enum<QueryOperator>
| Enum Constant and Description | 
|---|
| EQUALS | 
| GREATER_THAN | 
| GREATER_THAN_OR_EQUAL | 
| LESS_THAN | 
| LESS_THAN_OR_EQUAL | 
| LIKE | 
| NOT_EQUALS | 
| Modifier and Type | Method and Description | 
|---|---|
| static QueryOperator | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static QueryOperator[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final QueryOperator EQUALS
public static final QueryOperator NOT_EQUALS
public static final QueryOperator GREATER_THAN
public static final QueryOperator GREATER_THAN_OR_EQUAL
public static final QueryOperator LESS_THAN
public static final QueryOperator LESS_THAN_OR_EQUAL
public static final QueryOperator LIKE
public static QueryOperator[] values()
for (QueryOperator c : QueryOperator.values()) System.out.println(c);
public static QueryOperator 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 © 2018. All rights reserved.