Package org.apache.lucene.search.spell
Class SuggestWordQueue
- java.lang.Object
-
- org.apache.lucene.util.PriorityQueue<SuggestWord>
-
- org.apache.lucene.search.spell.SuggestWordQueue
-
public final class SuggestWordQueue extends org.apache.lucene.util.PriorityQueue<SuggestWord>
Sorts SuggestWord instances
-
-
Field Summary
Fields Modifier and Type Field Description static Comparator<SuggestWord>
DEFAULT_COMPARATOR
-
Constructor Summary
Constructors Constructor Description SuggestWordQueue(int size)
Use theDEFAULT_COMPARATOR
SuggestWordQueue(int size, Comparator<SuggestWord> comparator)
Specify the size of the queue and the comparator to use for sorting.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
lessThan(SuggestWord wa, SuggestWord wb)
-
-
-
Field Detail
-
DEFAULT_COMPARATOR
public static final Comparator<SuggestWord> DEFAULT_COMPARATOR
-
-
Constructor Detail
-
SuggestWordQueue
public SuggestWordQueue(int size)
Use theDEFAULT_COMPARATOR
- Parameters:
size
- The size of the queue
-
SuggestWordQueue
public SuggestWordQueue(int size, Comparator<SuggestWord> comparator)
Specify the size of the queue and the comparator to use for sorting.- Parameters:
size
- The sizecomparator
- The comparator.
-
-
Method Detail
-
lessThan
protected final boolean lessThan(SuggestWord wa, SuggestWord wb)
- Specified by:
lessThan
in classorg.apache.lucene.util.PriorityQueue<SuggestWord>
-
-