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
- See Also:
 SuggestWordScoreComparator, 
SuggestWordFrequencyComparator
 
 
 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
DEFAULT_COMPARATOR
public static final Comparator<SuggestWord> DEFAULT_COMPARATOR
- Default comparator: score then frequency.
- See Also:
 SuggestWordScoreComparator
 
SuggestWordQueue
public SuggestWordQueue(int size)
- Use the 
DEFAULT_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.
 
lessThan
protected final boolean lessThan(SuggestWord wa,
                                 SuggestWord wb)
- Specified by:
 lessThan in class PriorityQueue<SuggestWord>
 
 
          Copyright © 2000-2012 Apache Software Foundation.  All Rights Reserved.