public enum CriteriaItemValueTypeEnum extends Enum<CriteriaItemValueTypeEnum>
Enum Constant and Description |
---|
BETWEEN_VALUE
BETWEEN值
|
COLUMN_COMPARE
列比较
|
LIST_VALUE
列表值
|
NO_VALUE
无值
|
SINGLE_VALUE
单个值
|
Modifier and Type | Method and Description |
---|---|
static CriteriaItemValueTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CriteriaItemValueTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CriteriaItemValueTypeEnum COLUMN_COMPARE
public static final CriteriaItemValueTypeEnum NO_VALUE
public static final CriteriaItemValueTypeEnum SINGLE_VALUE
public static final CriteriaItemValueTypeEnum BETWEEN_VALUE
public static final CriteriaItemValueTypeEnum LIST_VALUE
public static CriteriaItemValueTypeEnum[] values()
for (CriteriaItemValueTypeEnum c : CriteriaItemValueTypeEnum.values()) System.out.println(c);
public static CriteriaItemValueTypeEnum 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 IBIT程序猿. All rights reserved.