public interface ISearchTree<T>
| 修飾子とタイプ | メソッドと説明 |
|---|---|
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.