public enum Operator extends Enum<Operator>
Enum Constant and Description |
---|
BETWEEN_L_L |
EQUALS |
GREAT |
GREAT_EQUALS |
IN |
IS_NOT_NULL |
IS_NULL |
LESS |
LESS_EQUALS |
MATCH_ANY |
MATCH_END |
MATCH_START |
NOT_EQUALS |
NOT_IN |
Modifier and Type | Method and Description |
---|---|
String |
getKey() |
String |
getOper() |
static Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator |
valueOfKey(String key) |
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator EQUALS
public static final Operator GREAT
public static final Operator LESS
public static final Operator GREAT_EQUALS
public static final Operator LESS_EQUALS
public static final Operator MATCH_ANY
public static final Operator MATCH_START
public static final Operator MATCH_END
public static final Operator IN
public static final Operator NOT_IN
public static final Operator NOT_EQUALS
public static final Operator BETWEEN_L_L
public static final Operator IS_NULL
public static final Operator IS_NOT_NULL
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static 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 nullpublic String getKey()
public String getOper()
Copyright © 2020. All rights reserved.