cn.remex.db.rsql
枚举 RsqlConstants.WhereRuleOper

java.lang.Object
  继承者 java.lang.Enum<RsqlConstants.WhereRuleOper>
      继承者 cn.remex.db.rsql.RsqlConstants.WhereRuleOper
所有已实现的接口:
Serializable, Comparable<RsqlConstants.WhereRuleOper>
正在封闭接口:
RsqlConstants

public static enum RsqlConstants.WhereRuleOper
extends Enum<RsqlConstants.WhereRuleOper>

条件查询的过滤规则


枚举常量摘要
bn
          不以...开始
bw
          以...开始
cn
          包含
en
          不以...结束
eq
          等于
ew
          以...结束
ge
          大于等于
gt
          大于
in
          在....里面
isNull
          为空
le
          小于等于
lt
          小于
nc
          不包含
ne
          不等于
ni
          不在...里面
notNull
          不为空
 
方法摘要
static RsqlConstants.WhereRuleOper valueOf(String name)
          返回带有指定名称的该类型的枚举常量。
static RsqlConstants.WhereRuleOper[] values()
          按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。
 
从类 java.lang.Enum 继承的方法
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 

枚举常量详细信息

bn

public static final RsqlConstants.WhereRuleOper bn
不以...开始


bw

public static final RsqlConstants.WhereRuleOper bw
以...开始


cn

public static final RsqlConstants.WhereRuleOper cn
包含


en

public static final RsqlConstants.WhereRuleOper en
不以...结束


eq

public static final RsqlConstants.WhereRuleOper eq
等于


ew

public static final RsqlConstants.WhereRuleOper ew
以...结束


ge

public static final RsqlConstants.WhereRuleOper ge
大于等于


gt

public static final RsqlConstants.WhereRuleOper gt
大于


le

public static final RsqlConstants.WhereRuleOper le
小于等于


lt

public static final RsqlConstants.WhereRuleOper lt
小于


nc

public static final RsqlConstants.WhereRuleOper nc
不包含


ne

public static final RsqlConstants.WhereRuleOper ne
不等于


in

public static final RsqlConstants.WhereRuleOper in
在....里面


ni

public static final RsqlConstants.WhereRuleOper ni
不在...里面


isNull

public static final RsqlConstants.WhereRuleOper isNull
为空


notNull

public static final RsqlConstants.WhereRuleOper notNull
不为空

方法详细信息

values

public static RsqlConstants.WhereRuleOper[] values()
按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。该方法可用于迭代 常量,如下所示:
for (RsqlConstants.WhereRuleOper c : RsqlConstants.WhereRuleOper.values())
    System.out.println(c);


valueOf

public static RsqlConstants.WhereRuleOper valueOf(String name)
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格。)

参数:
name - 要返回的枚举常量的名称。
返回:
返回带有指定名称的枚举常量
抛出:
如果该枚举类型没有带有指定名称的常量, - 则抛出 IllegalArgumentException


Copyright © 2016. All rights reserved.