Package hudson.search
Interface SearchIndex
-
- All Known Implementing Classes:
CollectionSearchIndex
,FixedSet
,UnionSearchIndex
public interface SearchIndex
Conceptually a set ofSearchItem
s that provide quick look-up from their names.- Author:
- Kohsuke Kawaguchi
- See Also:
SearchIndexBuilder
-
-
Field Summary
Fields Modifier and Type Field Description static SearchIndex
EMPTY
Empty set.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
find(String token, List<SearchItem> result)
void
suggest(String token, List<SearchItem> result)
This method returns the superset offind(String, List)
.
-
-
-
Field Detail
-
EMPTY
static final SearchIndex EMPTY
Empty set.
-
-
Method Detail
-
find
void find(String token, List<SearchItem> result)
-
suggest
void suggest(String token, List<SearchItem> result)
This method returns the superset offind(String, List)
.
-
-