Uses of Class
org.apache.solr.client.solrj.SolrQuery.SortClause

Packages that use SolrQuery.SortClause
org.apache.solr.client.solrj Primary APIs for communicating with a Solr Server from a Java client. 
 

Uses of SolrQuery.SortClause in org.apache.solr.client.solrj
 

Methods in org.apache.solr.client.solrj that return SolrQuery.SortClause
static SolrQuery.SortClause SolrQuery.SortClause.asc(String item)
          Creates an ascending SortClause for an item
static SolrQuery.SortClause SolrQuery.SortClause.create(String item, SolrQuery.ORDER order)
          Creates an ascending SortClause for an item
static SolrQuery.SortClause SolrQuery.SortClause.create(String item, String order)
          Creates a SortClause based on item and order
static SolrQuery.SortClause SolrQuery.SortClause.desc(String item)
          Creates a decending SortClause for an item
 

Methods in org.apache.solr.client.solrj that return types with arguments of type SolrQuery.SortClause
 List<SolrQuery.SortClause> SolrQuery.getSorts()
          Gets an a list of current sort clauses.
 

Methods in org.apache.solr.client.solrj with parameters of type SolrQuery.SortClause
 SolrQuery SolrQuery.addOrUpdateSort(SolrQuery.SortClause sortClause)
          Updates or adds a single sort field specification to the current sort information.
 SolrQuery SolrQuery.addSort(SolrQuery.SortClause sortClause)
          Adds a single sort clause to the end of the query.
 SolrQuery SolrQuery.removeSort(SolrQuery.SortClause sortClause)
          Removes a single sort field from the current sort information.
 SolrQuery SolrQuery.setSort(SolrQuery.SortClause sortClause)
          Replaces the current sort information with a single sort clause
 

Method parameters in org.apache.solr.client.solrj with type arguments of type SolrQuery.SortClause
 SolrQuery SolrQuery.setSorts(List<SolrQuery.SortClause> value)
          Replaces the current sort information.
 



Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.