Package org.elasticsearch.script

Examples of org.elasticsearch.script.AbstractFloatSearchScript


*/
public final class LuceneScoreFactory implements NativeScriptFactory {

    @Override
    public ExecutableScript newScript(@Nullable Map<String, Object> params) {
        return new AbstractFloatSearchScript() {

            @Override
            public float runAsFloat() {
                return score();
            }
View Full Code Here

TOP

Related Classes of org.elasticsearch.script.AbstractFloatSearchScript

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.