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

com.github.tlrx.elasticsearch.test.annotations.ElasticsearchAnalyzer Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
/**
 *
 */
package com.github.tlrx.elasticsearch.test.annotations;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * ElasticsearchAnalyzer annotation, used to define an analyzer in the analysis settings of an index
 *
 * @author tlrx
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface ElasticsearchAnalyzer {

    /**
     * The name of the analyzer
     */
    String name();

    /**
     * The name of the tokenizer
     */
    String tokenizer();

    /**
     * Filters names
     */
    String[] filtersNames() default {};

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy