Uses of Class
org.apache.lucene.search.SimpleFieldComparator
-
Packages that use SimpleFieldComparator Package Description org.apache.lucene.document The logical representation of aDocumentfor indexing and searching.org.apache.lucene.queries.function Queries that compute score based upon a function.org.apache.lucene.search Code to search indices. -
-
Uses of SimpleFieldComparator in org.apache.lucene.document
Subclasses of SimpleFieldComparator in org.apache.lucene.document Modifier and Type Class Description (package private) classFeatureSortField.FeatureComparatorParses a feature field's values as float and sorts by descending value -
Uses of SimpleFieldComparator in org.apache.lucene.queries.function
Subclasses of SimpleFieldComparator in org.apache.lucene.queries.function Modifier and Type Class Description (package private) classValueSource.ValueSourceComparatorImplement aFieldComparatorthat works off of theFunctionValuesfor a ValueSource instead of the normal Lucene FieldComparator that works off of a FieldCache. -
Uses of SimpleFieldComparator in org.apache.lucene.search
Subclasses of SimpleFieldComparator in org.apache.lucene.search Modifier and Type Class Description static classFieldComparator.DoubleComparatorParses field's values as double (usingLeafReader.getNumericDocValues(java.lang.String)and sorts by ascending valuestatic classFieldComparator.FloatComparatorParses field's values as float (usingLeafReader.getNumericDocValues(String)and sorts by ascending valuestatic classFieldComparator.IntComparatorParses field's values as int (usingLeafReader.getNumericDocValues(String)and sorts by ascending valuestatic classFieldComparator.LongComparatorParses field's values as long (usingLeafReader.getNumericDocValues(String)and sorts by ascending valuestatic classFieldComparator.NumericComparator<T extends java.lang.Number>Base FieldComparator class for numeric types
-