Package org.apache.lucene.util
Class Sorter
- java.lang.Object
-
- org.apache.lucene.util.Sorter
-
- Direct Known Subclasses:
InPlaceMergeSorter
,IntroSorter
,TimSorter
public abstract class Sorter extends Object
Base class for sorting algorithms implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
sort(int from, int to)
Sort the slice which starts atfrom
(inclusive) and ends atto
(exclusive).
-