Uses of Enum Class
org.apache.solr.client.solrj.request.SolrQuery.ORDER
Packages that use SolrQuery.ORDER
Package
Description
Convenience classes for dealing with various types of Solr requests.
-
Uses of SolrQuery.ORDER in org.apache.solr.client.solrj.request
Methods in org.apache.solr.client.solrj.request that return SolrQuery.ORDERModifier and TypeMethodDescriptionSolrQuery.SortClause.getOrder()Gets the order to sortSolrQuery.ORDER.reverse()static SolrQuery.ORDERReturns the enum constant of this class with the specified name.static SolrQuery.ORDER[]SolrQuery.ORDER.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.solr.client.solrj.request with parameters of type SolrQuery.ORDERModifier and TypeMethodDescriptionSolrQuery.addOrUpdateSort(String field, SolrQuery.ORDER order) Updates or adds a single sort clause to the query.SolrQuery.addSort(String field, SolrQuery.ORDER order) Adds a single sort clause to the end of the current sort information.static SolrQuery.SortClauseSolrQuery.SortClause.create(String item, SolrQuery.ORDER order) Creates an ascending SortClause for an itemSolrQuery.setSort(String field, SolrQuery.ORDER order) Replaces the current sort information with a single sort clauseConstructors in org.apache.solr.client.solrj.request with parameters of type SolrQuery.ORDERModifierConstructorDescriptionSortClause(String item, SolrQuery.ORDER order) Creates a SortClause based on item and order