public enum EsAttachTypeEnum extends Enum<EsAttachTypeEnum>
Copyright © 2021 xpc1024 All Rights Reserved
| 枚举常量和说明 |
|---|
BETWEEN
此区间范围,相当于Mysql中的 between
|
EXISTS
存在,相当于Mysql中的 not null
|
FILTER
必须满足,与must区别是不计算得分,效率更高
|
GE
大于等于 相当于Mysql中的 大于等于
|
GT
大于 相当于Mysql中的 大于
|
IN
在指定集合内 相当于Mysql中的 in
|
LE
小于等于 相当于Mysql中的 小于等于
|
LIKE
左右都模糊,相当于Mysql中的like %xxx%
|
LIKE_LEFT
左模糊,相当于Mysql中的like %xxx
|
LIKE_RIGHT
右模糊,相当于Mysql中的like xxx%
|
LT
小于 相当于Mysql中的 小于
|
MUST
必须满足,相当于MySQL中的and
|
MUST_MULTI_FIELDS
多字段 multiMatchQuery
|
MUST_NOT
否,相当于MySQL中的不等于
|
NOT_BETWEEN
在此区间范围,相当于Mysql中的 not between
|
NOT_EXISTS
不存在,相当于Mysql中的 is null
|
NOT_IN
不在指定集合内 相当于Mysql中的 not in
|
SHOULD
或,相当于MySQL中的or
|
public static final EsAttachTypeEnum MUST
public static final EsAttachTypeEnum FILTER
public static final EsAttachTypeEnum SHOULD
public static final EsAttachTypeEnum MUST_NOT
public static final EsAttachTypeEnum GT
public static final EsAttachTypeEnum GE
public static final EsAttachTypeEnum LT
public static final EsAttachTypeEnum LE
public static final EsAttachTypeEnum IN
public static final EsAttachTypeEnum NOT_IN
public static final EsAttachTypeEnum EXISTS
public static final EsAttachTypeEnum NOT_EXISTS
public static final EsAttachTypeEnum BETWEEN
public static final EsAttachTypeEnum NOT_BETWEEN
public static final EsAttachTypeEnum LIKE
public static final EsAttachTypeEnum LIKE_LEFT
public static final EsAttachTypeEnum LIKE_RIGHT
public static final EsAttachTypeEnum MUST_MULTI_FIELDS
public static EsAttachTypeEnum[] values()
for (EsAttachTypeEnum c : EsAttachTypeEnum.values()) System.out.println(c);
public static EsAttachTypeEnum valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.