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

tech.mhuang.ext.elasticsearch.model.index.key.SearchParameter Maven / Gradle / Ivy

package tech.mhuang.ext.elasticsearch.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 - 2024 Weber Informatics LLC | Privacy Policy