Uses of Class
org.apache.lucene.search.Pruning
-
Packages that use Pruning Package Description org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.queries.function Queries that compute score based upon a function.org.apache.lucene.search Code to search indices.org.apache.lucene.search.comparators Comparators, used to compare hits so as to determine their sort order when collecting the top results withTopFieldCollector
.org.apache.lucene.search.join Support for index-time and query-time joins.org.apache.lucene.spatial3d Lucene field & query support for the spatial geometry implemented inorg.apache.lucene.spatial3d.geom
. -
-
Uses of Pruning in org.apache.lucene.document
Methods in org.apache.lucene.document with parameters of type Pruning Modifier and Type Method Description FieldComparator<?>
FeatureSortField. getComparator(int numHits, Pruning pruning)
FieldComparator<?>
LatLonPointSortField. getComparator(int numHits, Pruning pruning)
FieldComparator<?>
XYPointSortField. getComparator(int numHits, Pruning pruning)
-
Uses of Pruning in org.apache.lucene.queries.function
Methods in org.apache.lucene.queries.function with parameters of type Pruning Modifier and Type Method Description FieldComparator<java.lang.Double>
ValueSource.ValueSourceComparatorSource. newComparator(java.lang.String fieldname, int numHits, Pruning pruning, boolean reversed)
-
Uses of Pruning in org.apache.lucene.search
Methods in org.apache.lucene.search that return Pruning Modifier and Type Method Description static Pruning
Pruning. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Pruning[]
Pruning. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.search with parameters of type Pruning Modifier and Type Method Description FieldComparator<?>
SortedNumericSortField. getComparator(int numHits, Pruning pruning)
FieldComparator<?>
SortedSetSortField. getComparator(int numHits, Pruning pruning)
FieldComparator<?>
SortField. getComparator(int numHits, Pruning pruning)
Returns theFieldComparator
to use for sorting.FieldComparator<java.lang.Double>
DoubleValuesSource.DoubleValuesComparatorSource. newComparator(java.lang.String fieldname, int numHits, Pruning pruning, boolean reversed)
abstract FieldComparator<?>
FieldComparatorSource. newComparator(java.lang.String fieldname, int numHits, Pruning pruning, boolean reversed)
Creates a comparator for the field in the given index.FieldComparator<java.lang.Long>
LongValuesSource.LongValuesComparatorSource. newComparator(java.lang.String fieldname, int numHits, Pruning pruning, boolean reversed)
-
Uses of Pruning in org.apache.lucene.search.comparators
Fields in org.apache.lucene.search.comparators declared as Pruning Modifier and Type Field Description protected Pruning
NumericComparator. pruning
Constructors in org.apache.lucene.search.comparators with parameters of type Pruning Constructor Description DocComparator(int numHits, boolean reverse, Pruning pruning)
Creates a new comparator based on document ids fornumHits
DoubleComparator(int numHits, java.lang.String field, java.lang.Double missingValue, boolean reverse, Pruning pruning)
FloatComparator(int numHits, java.lang.String field, java.lang.Float missingValue, boolean reverse, Pruning pruning)
IntComparator(int numHits, java.lang.String field, java.lang.Integer missingValue, boolean reverse, Pruning pruning)
LongComparator(int numHits, java.lang.String field, java.lang.Long missingValue, boolean reverse, Pruning pruning)
NumericComparator(java.lang.String field, T missingValue, boolean reverse, Pruning pruning, int bytesCount)
TermOrdValComparator(int numHits, java.lang.String field, boolean sortMissingLast, boolean reverse, Pruning pruning)
Creates this, with control over how missing values are sorted. -
Uses of Pruning in org.apache.lucene.search.join
Methods in org.apache.lucene.search.join with parameters of type Pruning Modifier and Type Method Description FieldComparator<?>
ToParentBlockJoinSortField. getComparator(int numHits, Pruning pruning)
-
Uses of Pruning in org.apache.lucene.spatial3d
Methods in org.apache.lucene.spatial3d with parameters of type Pruning Modifier and Type Method Description FieldComparator<?>
Geo3DPointOutsideSortField. getComparator(int numHits, Pruning pruning)
FieldComparator<?>
Geo3DPointSortField. getComparator(int numHits, Pruning pruning)
-