public interface BytesRefSorter
BytesRef
and then allows one to iterate over their sorted order. Implementations
of this interface will be called in a single-threaded scenario.Modifier and Type | Method and Description |
---|---|
void |
add(BytesRef utf8)
Adds a single suggestion entry (possibly compound with its bucket).
|
Comparator<BytesRef> |
getComparator()
Comparator used to determine the sort order of entries.
|
BytesRefIterator |
iterator()
Sorts the entries added in
add(BytesRef) and returns
an iterator over all sorted entries. |
void add(BytesRef utf8) throws IOException, IllegalStateException
IOException
- If an I/O exception occurs.IllegalStateException
- If an addition attempt is performed after
a call to iterator()
has been made.BytesRefIterator iterator() throws IOException
add(BytesRef)
and returns
an iterator over all sorted entries.IOException
- If an I/O exception occurs.Comparator<BytesRef> getComparator()
Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.