public interface ISearchTree<T>
| Modifier and Type | Method and Description |
|---|---|
java.util.List<T> |
search(java.lang.String searchText)
Searches this search tree for the given text.
|
java.util.List<T> search(java.lang.String searchText)
If the query does not contain a :, then only #byName is searched; if it does contain a
colon, both #byName and #byId are searched and the results are merged using a MergingIterator.
searchText - The text to search for. Must be normalized with toLowerCase(Locale.ROOT) before
calling this method.