Package org.elasticsearch.search.aggregations.support.values

Examples of org.elasticsearch.search.aggregations.support.values.ScriptBytesValues


        public static class Script extends Bytes {

            private final ScriptBytesValues values;

            public Script(SearchScript script) {
                values = new ScriptBytesValues(script);
            }
View Full Code Here


            public Script(SearchScript script, ValueType scriptValueType) {
                this.scriptValueType = scriptValueType;
                longValues = new ScriptLongValues(script);
                doubleValues = new ScriptDoubleValues(script);
                bytesValues = new ScriptBytesValues(script);
            }
View Full Code Here

TOP

Related Classes of org.elasticsearch.search.aggregations.support.values.ScriptBytesValues

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.