public class TSTLookup extends Lookup
Lookup.LookupPriorityQueue, Lookup.LookupResultCHARSEQUENCE_COMPARATOR| Constructor and Description |
|---|
TSTLookup() |
| 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
LookupLookup representation based on the given TermFreqIterator.
The implementation might re-sort the data internally.build in class LookupIOExceptionpublic boolean add(CharSequence key, Object value)
public Object get(CharSequence key)
public List<Lookup.LookupResult> lookup(CharSequence key, boolean onlyMorePopular, int num)
Lookuplookup in class Lookupkey - 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
Lookupstore in class Lookupoutput - OutputStream to write the data to.IOException - when fatal IO error occurs.public boolean load(InputStream input) throws IOException
Lookupload in class Lookupinput - the InputStream to load the lookup data.IOException - when fatal IO error occurs.