show/hide this revision's text 3 added 106 characters in body

You can use the class PrefixQuery on a "dictionary" index. The class LuceneDictionary could be helpful too
Take a look at this article
It explains how to implement the feature "Did you mean ?" available in modern search engine such as google.
You do may not need something as complex as described in the article. However the article explains how to generate use the lucene spell package.
One way to build a "dictionary" index would be to iterate on a LuceneDictionary.
Hope it helps

show/hide this revision's text 2 added 21 characters in body

You can use the class PrefixQuery on a "dictionary" index. The class LuceneDictionary could be helpful too
Take a look at this article
It explains how to implement the feature "Did you mean ?" available in modern search engine such as google.
You do not need something as complex as described in the article. However the article explains how to generate a "dictionary" index.

show/hide this revision's text 1

You can use the class PrefixQuery on a "dictionary" index. Take a look at this article
It explains how to implement the feature "Did you mean ?" available in modern search engine such as google.
You do not need something as complex as described in the article. However the article explains how to generate a "dictionary" index.