public class JaspellLookup extends Lookup
Lookup.LookupPriorityQueue, Lookup.LookupResult
CHARSEQUENCE_COMPARATOR
Constructor and Description |
---|
JaspellLookup() |
Modifier and Type | Method and Description |
---|---|
boolean |
add(CharSequence key,
Object value) |
void |
build(TermFreqIterator tfit)
Builds up a new internal
Lookup representation based on the given TermFreqIterator . |
Object |
get(CharSequence key) |
boolean |
load(InputStream input)
Discard current lookup data and load it from a previously saved copy.
|
List<Lookup.LookupResult> |
lookup(CharSequence key,
boolean onlyMorePopular,
int num)
Look up a key and return possible completion for this key.
|
boolean |
store(OutputStream output)
Persist the constructed lookup data to a directory.
|
public void build(TermFreqIterator tfit) throws IOException
Lookup
Lookup
representation based on the given TermFreqIterator
.
The implementation might re-sort the data internally.build
in class Lookup
IOException
public boolean add(CharSequence key, Object value)
public Object get(CharSequence key)
public List<Lookup.LookupResult> lookup(CharSequence key, boolean onlyMorePopular, int num)
Lookup
lookup
in class Lookup
key
- lookup key. Depending on the implementation this may be
a prefix, misspelling, or even infix.onlyMorePopular
- return only more popular resultsnum
- maximum number of results to returnpublic boolean store(OutputStream output) throws IOException
Lookup
store
in class Lookup
output
- OutputStream
to write the data to.IOException
- when fatal IO error occurs.public boolean load(InputStream input) throws IOException
Lookup
load
in class Lookup
input
- the InputStream
to load the lookup data.IOException
- when fatal IO error occurs.