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 PriorityQueue<SuggestWord>
Sorts SuggestWord instances
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.Comparator<SuggestWord>
DEFAULT_COMPARATOR
Default comparator: score then frequency.
-
Constructor Summary
Constructors Constructor Description SuggestWordQueue(int size)
Use theDEFAULT_COMPARATOR
SuggestWordQueue(int size, java.util.Comparator<SuggestWord> comparator)
Specify the size of the queue and the comparator to use for sorting.
-
Method Summary
-
Methods inherited from class org.apache.lucene.util.PriorityQueue
add, clear, insertWithOverflow, pop, size, top, updateTop
-
-
-
-
Field Detail
-
DEFAULT_COMPARATOR
public static final java.util.Comparator<SuggestWord> DEFAULT_COMPARATOR
Default comparator: score then frequency.- See Also:
SuggestWordScoreComparator
-
-
Constructor Detail
-
SuggestWordQueue
public SuggestWordQueue(int size)
Use theDEFAULT_COMPARATOR
- Parameters:
size
- The size of the queue
-
SuggestWordQueue
public SuggestWordQueue(int size, java.util.Comparator<SuggestWord> comparator)
Specify the size of the queue and the comparator to use for sorting.- Parameters:
size
- The sizecomparator
- The comparator.
-
-