Examples of TermsResultPage


Examples of org.springframework.data.solr.core.query.result.TermsResultPage

  public TermsPage queryForTermsPage(TermsQuery query) {
    Assert.notNull(query, "Query must not be 'null'.");

    QueryResponse response = query(query);

    TermsResultPage page = new TermsResultPage();
    page.addAllTerms(ResultHelper.convertTermsQueryResponseToTermsMap(response));
    return page;
  }
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.