public static enum Cond.OPT extends Enum<Cond.OPT>
Enum Constant and Description |
---|
EQ
等于
|
GT
大于
|
GT_EQ
大于等于
|
LIKE
模糊
|
LT
小于
|
LT_EQ
小于等于
|
NOT_EQ
不等于
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Cond.OPT |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cond.OPT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cond.OPT EQ
public static final Cond.OPT NOT_EQ
public static final Cond.OPT LT
public static final Cond.OPT GT
public static final Cond.OPT LT_EQ
public static final Cond.OPT GT_EQ
public static final Cond.OPT LIKE
public static Cond.OPT[] values()
for (Cond.OPT c : Cond.OPT.values()) System.out.println(c);
public static Cond.OPT 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. All rights reserved.