public static enum SqlOper.Oper extends Enum<SqlOper.Oper>
| 枚举常量和说明 |
|---|
EQUAL
means "="
|
GREATER
means ">"
|
GREATEREQUAL
means ">="
|
LESS
means "<"
|
LESSEQUAL
means "<="
|
LIKE
means "like"
|
public static final SqlOper.Oper EQUAL
public static final SqlOper.Oper LIKE
public static final SqlOper.Oper GREATER
public static final SqlOper.Oper GREATEREQUAL
public static final SqlOper.Oper LESS
public static final SqlOper.Oper LESSEQUAL
public static SqlOper.Oper[] values()
for (SqlOper.Oper c : SqlOper.Oper.values()) System.out.println(c);
public static SqlOper.Oper valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2015. All rights reserved.