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

io.searchbox.indices.script.ScriptLanguage Maven / Gradle / Ivy

There is a newer version: 6.3.1
Show newest version
package io.searchbox.indices.script;

/**
 * As described in Elasticsearch Reference
 * 
 * https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html
 * 
 */
public enum ScriptLanguage {
    GROOVY("groovy"),
    EXPRESSION("expression"),
    MUSTACHE("mustache"),
    MVEL("mvel"),
    JAVASCRIPT("javascript"),
    PYTHON("python");

    public final String pathParameterName;

    ScriptLanguage(String pathParameterName) {
        this.pathParameterName = pathParameterName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy