org.apache.lucene.search.spell
final class: SuggestWordQueue [javadoc |
source]
java.lang.Object
org.apache.lucene.util.PriorityQueue<SuggestWord>
org.apache.lucene.search.spell.SuggestWordQueue
Sorts SuggestWord instances
Method from org.apache.lucene.search.spell.SuggestWordQueue Summary: |
---|
lessThan |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.lucene.search.spell.SuggestWordQueue Detail: |
protected final boolean lessThan(SuggestWord wa,
SuggestWord wb) {
int val = wa.compareTo(wb);
return val < 0;
}
|