Package cn.toint.jdy4j.core.model
Enum Class JdyMethodEnum
- All Implemented Interfaces:
Serializable,Comparable<JdyMethodEnum>,Constable
过滤方法
“not_empty”(不为空),
“empty”(为空),
“eq”(等于),
“in”(等于任意一个),最多可传递 200 个
“range”(在x与y之间,并且包含x和y本身),
“nin”(不等于任意一个),最多可传递 200 个
“ne”(不等于),
“like”(包含)
“verified“(表示填写了手机号且已验证的值)
“unverified“(表示填写了手机号但未验证值)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic JdyMethodEnumReturns the enum constant of this class with the specified name.static JdyMethodEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_EMPTY
不为空 -
EMPTY
为空 -
EQ
等于 -
IN
等于任意一个,最多可传递 200 个 -
RANGE
在x与y之间,并且包含x和y本身 -
NIN
不等于任意一个,最多可传递 200 个 -
NE
不等于 -
LIKE
包含 -
VERIFIED
表示填写了手机号且已验证的值 -
UNVERIFIED
表示填写了手机号但未验证值
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-