Package org.elasticsearch.search.facet.statistical

Examples of org.elasticsearch.search.facet.statistical.StatisticalFacetBuilder.fields()


    Assert.notNull(getName(), "Facet name can't be a null !!!");
    Assert.isTrue(StringUtils.isNotBlank(field) && fields == null, "Please select field or fields on which to build the facets !!!");

    StatisticalFacetBuilder builder = FacetBuilders.statisticalFacet(getName());
    if (ArrayUtils.isNotEmpty(fields)) {
      builder.fields(fields);
    } else {
      builder.field(field);
    }

    return builder;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.