Package org.elasticsearch.common

Examples of org.elasticsearch.common.ParseField


            indexedParameters = new HashSet<>();
            for (String parameterName : parameterNames) {
                if (ScriptService.SCRIPT_LANG.match(parameterName)) {
                    throw new IllegalArgumentException("lang is reserved and cannot be used as a parameter name");
                }
                inlineParameters.add(new ParseField(parameterName));
                fileParameters.add(new ParseField(parameterName + FILE_SUFFIX));
                indexedParameters.add(new ParseField(parameterName + INDEXED_SUFFIX));
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.common.ParseField

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.