Enum Class OperatorType

java.lang.Object
java.lang.Enum<OperatorType>
tech.mhuang.pacebox.elasticsearch.server.query.OperatorType
所有已实现的接口:
Serializable, Comparable<OperatorType>, Constable

public enum OperatorType extends Enum<OperatorType>
支持的操作类型
从以下版本开始:
1.0.0
作者:
zhangxh
  • 枚举常量详细资料

    • EQUALS

      public static final OperatorType EQUALS
      等于
    • LIKE

      public static final OperatorType LIKE
      匹配
    • GT

      public static final OperatorType GT
      大于
    • LT

      public static final OperatorType LT
      小于
    • NOTEQUALS

      public static final OperatorType NOTEQUALS
      不相等
    • GTE

      public static final OperatorType GTE
      大于等于
    • LTE

      public static final OperatorType LTE
      小于等于
    • BETWEENIN_CLUDE

      public static final OperatorType BETWEENIN_CLUDE
      两者之间包含
    • BETWEEN_INCLUDE_LEFT

      public static final OperatorType BETWEEN_INCLUDE_LEFT
      两者之间包含左
    • BETWEEN_INCLUDE_RIGHT

      public static final OperatorType BETWEEN_INCLUDE_RIGHT
      两者之间包含右边
    • BETWEEN_NOT_INCLUDE

      public static final OperatorType BETWEEN_NOT_INCLUDE
      两者之间不包含
    • REGEX

      public static final OperatorType REGEX
      正则表达式
  • 方法详细资料

    • values

      public static OperatorType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      返回:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static OperatorType valueOf(String name)
      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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getMessage

      public String getMessage()