public enum EntryType extends Enum<EntryType>
| 枚举常量和说明 |
|---|
Between
between ?
|
CurrPage
标准分页, 当前页码
|
EndWith
like %value
|
EQ
相等, 或save时赋值
|
Form
表单项 或 关联数据
|
GE
大于等于
|
GT
大于
|
Ignore
忽略字段
|
IN
IN (?
|
LE
小于等于
|
Like
like %value%
|
LT
小于
|
NE
不等于
|
OrderBy
order by 字段, 必须是布尔值(boolean, Boolean)
null: 表示忽略
true: 正序排序
false: 逆序排序
|
PagedTag
Tag分页, 主键值 >= tag
|
PageSize
分页, 每页记录数
|
StartWith
like value%
|
Update
更新字段
|
public static final EntryType Ignore
public static final EntryType Update
public static final EntryType EQ
public static final EntryType GT
public static final EntryType GE
public static final EntryType LT
public static final EntryType LE
public static final EntryType NE
public static final EntryType IN
public static final EntryType Like
public static final EntryType StartWith
public static final EntryType EndWith
public static final EntryType Between
public static final EntryType PageSize
public static final EntryType CurrPage
public static final EntryType PagedTag
public static final EntryType OrderBy
public static final EntryType Form
public static EntryType[] values()
for (EntryType c : EntryType.values()) System.out.println(c);
public static EntryType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.