public static enum PropertyFilter.MatchType extends java.lang.Enum<PropertyFilter.MatchType>
| Enum Constant and Description |
|---|
AND
添加 and 链接符
|
BETWEEN |
CONTAINS |
EMPTY |
ENDS_WITH |
EQ
等于
|
GE
Deprecated.
|
GT
大于
|
GTE
大于等于
|
IN
in
|
LE
Deprecated.
|
LIKE
Deprecated.
|
LT
小于
|
LTE
小于等于
|
NE
Deprecated.
|
NOT
不等于
|
NOT_CONTAINS |
NOT_EMPTY |
NOT_ENDS_WITH |
NOT_EQUAL
不等于
|
NOT_IN
not in
|
NOT_NULL
not null
|
NOT_STARTS_WITH |
NOTEMPTY
Deprecated.
|
NOTIN
Deprecated.
|
NOTNULL
Deprecated.
|
NULL
is null
|
OR
添加 or 链接符
|
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
<T> void |
build(PropertyFilterBuilder builder,
java.lang.String name,
java.lang.Object value) |
static PropertyFilter.MatchType |
get(java.lang.String str) |
java.lang.String |
getSlug() |
static boolean |
is(java.lang.String str) |
static PropertyFilter.MatchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyFilter.MatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyFilter.MatchType AND
public static final PropertyFilter.MatchType OR
public static final PropertyFilter.MatchType NOT
public static final PropertyFilter.MatchType EQ
public static final PropertyFilter.MatchType NOT_EQUAL
public static final PropertyFilter.MatchType CONTAINS
public static final PropertyFilter.MatchType NOT_CONTAINS
public static final PropertyFilter.MatchType STARTS_WITH
public static final PropertyFilter.MatchType NOT_STARTS_WITH
public static final PropertyFilter.MatchType ENDS_WITH
public static final PropertyFilter.MatchType NOT_ENDS_WITH
public static final PropertyFilter.MatchType LT
public static final PropertyFilter.MatchType GT
public static final PropertyFilter.MatchType LTE
public static final PropertyFilter.MatchType GTE
public static final PropertyFilter.MatchType IN
public static final PropertyFilter.MatchType NOT_IN
public static final PropertyFilter.MatchType NULL
public static final PropertyFilter.MatchType NOT_NULL
public static final PropertyFilter.MatchType EMPTY
public static final PropertyFilter.MatchType NOT_EMPTY
public static final PropertyFilter.MatchType BETWEEN
@Deprecated public static final PropertyFilter.MatchType LIKE
@Deprecated public static final PropertyFilter.MatchType NOTEMPTY
@Deprecated public static final PropertyFilter.MatchType NOTNULL
@Deprecated public static final PropertyFilter.MatchType NE
@Deprecated public static final PropertyFilter.MatchType NOTIN
@Deprecated public static final PropertyFilter.MatchType LE
@Deprecated public static final PropertyFilter.MatchType GE
public static PropertyFilter.MatchType[] values()
for (PropertyFilter.MatchType c : PropertyFilter.MatchType.values()) System.out.println(c);
public static PropertyFilter.MatchType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getSlug()
public static PropertyFilter.MatchType get(java.lang.String str)
public static boolean is(java.lang.String str)
public <T> void build(PropertyFilterBuilder builder, java.lang.String name, java.lang.Object value)