Package com.pearson.entech.elasticsearch.search.facet.approx.date.collectors

Examples of com.pearson.entech.elasticsearch.search.facet.approx.date.collectors.CountingCollector


        if(distinctFieldData == null && sliceFieldData == null)
            if(valueFieldData == null)
                _collector = new CountingCollector<NullFieldData>(keyFieldData, tzRounding);
            else
                _collector = new CountingCollector(keyFieldData, valueFieldData, tzRounding);
        else if(distinctFieldData == null)
            if(valueFieldData == null)
                _collector = new SlicedCollector(keyFieldData, sliceFieldData, tzRounding);
            else
                _collector = new SlicedCollector(keyFieldData, valueFieldData, sliceFieldData, tzRounding);
View Full Code Here

TOP

Related Classes of com.pearson.entech.elasticsearch.search.facet.approx.date.collectors.CountingCollector

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.