Examples of addFacetOnFlieldnames()


Examples of org.springframework.data.solr.core.query.FacetOptions.addFacetOnFlieldnames()

  }

  private FacetOptions extractFacetOptions(SolrQueryMethod queryMethod, SolrParameterAccessor parameterAccessor) {
    FacetOptions options = new FacetOptions();
    if (queryMethod.hasFacetFields()) {
      options.addFacetOnFlieldnames(queryMethod.getFacetFields());
    }
    if (queryMethod.hasFacetQueries()) {
      for (String queryString : queryMethod.getFacetQueries()) {
        options.addFacetQuery(createQueryFromString(queryString, parameterAccessor));
      }
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.