Uses of Class
gate.creole.annic.apache.lucene.search.SortField

Packages that use SortField
gate.creole.annic.apache.lucene.search Search over indices. 
 

Uses of SortField in gate.creole.annic.apache.lucene.search
 

Fields in gate.creole.annic.apache.lucene.search declared as SortField
static SortField SortField.FIELD_DOC
          Represents sorting by document number (index order).
static SortField SortField.FIELD_SCORE
          Represents sorting by document score (relevancy).
 SortField[] TopFieldDocs.fields
          The fields which were used to sort results by.
 

Methods in gate.creole.annic.apache.lucene.search with parameters of type SortField
 void Sort.setSort(SortField field)
          Sets the sort to the given criteria.
 void Sort.setSort(SortField[] fields)
          Sets the sort to the given criteria in succession.
 

Constructors in gate.creole.annic.apache.lucene.search with parameters of type SortField
Sort(SortField field)
          Sorts by the criteria in the given SortField.
Sort(SortField[] fields)
          Sorts in succession by the criteria in each SortField.