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

cn.geektool.es.model.index.key.SearchParameter Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package cn.geektool.es.model.index.key;

public class SearchParameter {
    /**
     * 类型名称
     */
    public static final String NAME = "search_analyzer";

    /**
     * 可选值
     */
    public static enum Values {
        IkMaxWord("ik_max_word"), IkSmart("ik_smart"), Standard("standard");
        private String value;

        Values(String value) {
            this.value = value;
        }

        @Override
        public String toString() {
            return this.value;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy