public enum QueryOperation extends java.lang.Enum<QueryOperation>
Query
Enum Constant and Description |
---|
AND |
EQUALS |
GT |
GTE |
IN |
LIKE |
LT |
LTE |
NOTNULL |
NULL |
OR |
UNEQUALS |
Modifier and Type | Method and Description |
---|---|
static QueryOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryOperation UNEQUALS
public static final QueryOperation EQUALS
public static final QueryOperation LT
public static final QueryOperation LTE
public static final QueryOperation GT
public static final QueryOperation GTE
public static final QueryOperation IN
public static final QueryOperation AND
public static final QueryOperation OR
public static final QueryOperation NULL
public static final QueryOperation NOTNULL
public static final QueryOperation LIKE
public static QueryOperation[] values()
for (QueryOperation c : QueryOperation.values()) System.out.println(c);
public static QueryOperation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.