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