Uses of Interface
org.apache.lucene.util.ArrayUtil.ByteArrayComparator
-
Packages that use ArrayUtil.ByteArrayComparator Package Description org.apache.lucene.sandbox.search This package contains a flexible graph-based proximity query, TermAutomatonQuery, and geospatial queries.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.util Some utility classes.org.apache.lucene.util.bkd Block KD-tree, implementing the generic spatial data structure described in this paper. -
-
Uses of ArrayUtil.ByteArrayComparator in org.apache.lucene.sandbox.search
Fields in org.apache.lucene.sandbox.search declared as ArrayUtil.ByteArrayComparator Modifier and Type Field Description private ArrayUtil.ByteArrayComparator
MultiRangeQuery.RangeTree. comparator
Methods in org.apache.lucene.sandbox.search with parameters of type ArrayUtil.ByteArrayComparator Modifier and Type Method Description (package private) static MultiRangeQuery.RangeTree
MultiRangeQuery. createTree(java.util.List<MultiRangeQuery.RangeClause> clauses, int numIndexDim, int bytesPerDim, ArrayUtil.ByteArrayComparator comparator)
Creates a tree from provided clausesprivate static MultiRangeQuery.RangeTree
MultiRangeQuery. createTree(MultiRangeQuery.Range[] components, int low, int high, int split, int numIndexDim, int bytesPerDim, ArrayUtil.ByteArrayComparator comparator)
Creates tree from sorted ranges (with range low and high inclusive)private static MultiRangeQuery.Range
MultiRangeQuery. getRange(MultiRangeQuery.RangeClause clause, int numIndexDim, int bytesPerDim, ArrayUtil.ByteArrayComparator comparator)
Builds a Range object from a range clauseConstructors in org.apache.lucene.sandbox.search with parameters of type ArrayUtil.ByteArrayComparator Constructor Description RangeTree(MultiRangeQuery.Range component, int split, ArrayUtil.ByteArrayComparator comparator, int numIndexDim, int bytesPerDim)
-
Uses of ArrayUtil.ByteArrayComparator in org.apache.lucene.search
Fields in org.apache.lucene.search declared as ArrayUtil.ByteArrayComparator Modifier and Type Field Description private ArrayUtil.ByteArrayComparator
PointInSetQuery.SinglePointVisitor. comparator
-
Uses of ArrayUtil.ByteArrayComparator in org.apache.lucene.search.comparators
Fields in org.apache.lucene.search.comparators declared as ArrayUtil.ByteArrayComparator Modifier and Type Field Description private ArrayUtil.ByteArrayComparator
NumericComparator. bytesComparator
-
Uses of ArrayUtil.ByteArrayComparator in org.apache.lucene.util
Methods in org.apache.lucene.util that return ArrayUtil.ByteArrayComparator Modifier and Type Method Description static ArrayUtil.ByteArrayComparator
ArrayUtil. getUnsignedComparator(int numBytes)
Return a comparator for exactly the specified number of bytes. -
Uses of ArrayUtil.ByteArrayComparator in org.apache.lucene.util.bkd
Fields in org.apache.lucene.util.bkd declared as ArrayUtil.ByteArrayComparator Modifier and Type Field Description private ArrayUtil.ByteArrayComparator
BKDWriter. commonPrefixComparator
private ArrayUtil.ByteArrayComparator
BKDWriter. comparator
Methods in org.apache.lucene.util.bkd that return ArrayUtil.ByteArrayComparator Modifier and Type Method Description static ArrayUtil.ByteArrayComparator
BKDUtil. getPrefixLengthComparator(int numBytes)
Return a comparator that computes the common prefix length across the nextnumBytes
of the provided arrays.
-