Package org.springframework.data.elasticsearch.core.facet.request

Source Code of org.springframework.data.elasticsearch.core.facet.request.StatisticalFacetRequest

/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.elasticsearch.core.facet.request;

import org.apache.commons.lang.ArrayUtils;
import org.apache.commons.lang.StringUtils;
import org.elasticsearch.search.facet.FacetBuilder;
import org.elasticsearch.search.facet.FacetBuilders;
import org.elasticsearch.search.facet.statistical.StatisticalFacetBuilder;
import org.springframework.data.elasticsearch.core.facet.AbstractFacetRequest;
import org.springframework.util.Assert;

/**
* @author Petar Tahchiev
*/
public class StatisticalFacetRequest extends AbstractFacetRequest {

  private String field;

  private String[] fields;

  public StatisticalFacetRequest(String name) {
    super(name);
  }

  public void setField(String field) {
    this.field = field;
  }

  public void setFields(String... fields) {
    this.fields = fields;
  }

  public FacetBuilder getFacet() {
    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;
  }
}
TOP

Related Classes of org.springframework.data.elasticsearch.core.facet.request.StatisticalFacetRequest

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.