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