Enum Class QueryQuota

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

public enum QueryQuota extends Enum<QueryQuota>
查询语法
从以下版本开始:
1.0.0
作者:
zhangxh
  • 枚举常量详细资料

    • AND

      public static final QueryQuota AND
      and 并且
    • OR

      public static final QueryQuota OR
      OR符号
    • LT

      public static final QueryQuota LT
      左括号
    • GT

      public static final QueryQuota GT
      右括号
    • CONDITION

      public static final QueryQuota CONDITION
      CONDITION
  • 方法详细资料

    • values

      public static QueryQuota[] 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 QueryQuota 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()