All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.geektool.es.server.query.QueryQuota Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package cn.geektool.es.server.query;

/**
 * 查询语法
 *
 * @author jiangdi
 * @since 1.0.0
 */
public enum QueryQuota {
    /**
     * and 并且
     */
    AND("and"),
    /**
     * OR符号
     */
    OR("or"),
    /**
     * 左括号
     */
    LT("("),
    /**
     * 右括号
     */
    GT(")"),
    /**
     * CONDITION
     */
    CONDITION("");

    private String message;

    QueryQuota(String message) {
        this.message = message;
    }

    public String getMessage() {
        return message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy