public enum FilterEnum extends Enum<FilterEnum>
依赖 CompareEnum
标准扩展
Enum Constant and Description |
---|
EQ
等于(equal to)
|
GE
大于等于(greater than or equal to)
|
GT
大于(greater than)
|
LE
小于等于(less than or equal to)
|
LIKE
包含
|
LT
小于(less than)
|
NE
不等于(not equal to)
|
NOTLIKE
不包含
|
Modifier and Type | Method and Description |
---|---|
String |
processFilterSqlCode(String value)
加工筛选SQL代码
|
static FilterEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterEnum EQ
public static final FilterEnum NE
public static final FilterEnum LT
public static final FilterEnum LE
public static final FilterEnum GT
public static final FilterEnum GE
public static final FilterEnum LIKE
public static final FilterEnum NOTLIKE
public static FilterEnum[] values()
for (FilterEnum c : FilterEnum.values()) System.out.println(c);
public static FilterEnum 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 © 2022 Pivotal Software, Inc.. All rights reserved.