Uses of Interface
hudson.search.SearchIndex
-
Packages that use SearchIndex Package Description hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.search QuickSilver-like search/jump capability for better navigation around Jenkins. -
-
Uses of SearchIndex in hudson.model
Methods in hudson.model that return SearchIndex Modifier and Type Method Description SearchIndex
AbstractModelObject. getSearchIndex()
-
Uses of SearchIndex in hudson.search
Classes in hudson.search that implement SearchIndex Modifier and Type Class Description class
CollectionSearchIndex<SMT extends SearchableModelObject>
SearchIndex
built on aMap
.class
FixedSet
Set ofSearchItem
s that are statically known upfront.class
UnionSearchIndex
Union of two sets.Fields in hudson.search declared as SearchIndex Modifier and Type Field Description static SearchIndex
SearchIndex. EMPTY
Empty set.Methods in hudson.search that return SearchIndex Modifier and Type Method Description static SearchIndex
UnionSearchIndex. combine(SearchIndex... sets)
SearchIndex
SearchItem. getSearchIndex()
Returns theSearchIndex
to further search sub items inside this item.SearchIndex
SearchIndexBuilder. make()
Methods in hudson.search with parameters of type SearchIndex Modifier and Type Method Description SearchIndexBuilder
SearchIndexBuilder. add(SearchIndex index)
static SearchIndex
UnionSearchIndex. combine(SearchIndex... sets)
static SearchItem
SearchItems. create(String searchName, String url, SearchIndex children)
static SuggestedItem
Search. find(SearchIndex index, String query)
Deprecated.static SuggestedItem
Search. find(SearchIndex index, String query, SearchableModelObject searchContext)
Performs a search and returns the match, or null if no match was found or more than one match was found.static List<SuggestedItem>
Search. suggest(SearchIndex index, String tokenList)
Deprecated.static List<SuggestedItem>
Search. suggest(SearchIndex index, String tokenList, SearchableModelObject searchContext)
Constructors in hudson.search with parameters of type SearchIndex Constructor Description UnionSearchIndex(SearchIndex lhs, SearchIndex rhs)
-