public enum OperatorEnum extends Enum<OperatorEnum>
Enum Constant and Description |
---|
BETWEEN
BETWEEN AND
|
EGT
大于等于
|
ELT
小于等于
|
EQ
相等
|
GT
大于
|
IN
IN
|
IS_EMPTY
为空字符串
|
IS_NOT_EMPTY
不为空串
|
IS_NOT_NULL
不为null
|
IS_NULL
为null
|
LIKE
LIKE
|
LT
小于
|
NEQ
不相等
|
NOT_BETWEEN
NOT BETWEEN AND
|
NOT_IN
NOT IN
|
NOT_LIKE
NOT LIKE
|
Modifier and Type | Method and Description |
---|---|
String |
getSecondValue()
Gets the value of secondValue
|
String |
getValue()
Gets the value of value
|
static OperatorEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperatorEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperatorEnum IS_NULL
public static final OperatorEnum IS_NOT_NULL
public static final OperatorEnum IS_EMPTY
public static final OperatorEnum IS_NOT_EMPTY
public static final OperatorEnum EQ
public static final OperatorEnum NEQ
public static final OperatorEnum GT
public static final OperatorEnum EGT
public static final OperatorEnum LT
public static final OperatorEnum ELT
public static final OperatorEnum IN
public static final OperatorEnum NOT_IN
public static final OperatorEnum BETWEEN
public static final OperatorEnum NOT_BETWEEN
public static final OperatorEnum LIKE
public static final OperatorEnum NOT_LIKE
public static OperatorEnum[] values()
for (OperatorEnum c : OperatorEnum.values()) System.out.println(c);
public static OperatorEnum 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 getValue()
public String getSecondValue()
Copyright © 2020 IBIT程序猿. All rights reserved.