Uses of Interface
com.atlassian.confluence.search.v2.SearchResult

Packages that use SearchResult
com.atlassian.confluence.content.render.xhtml.migration.macro   
com.atlassian.confluence.content.ui   
com.atlassian.confluence.json.jsonator   
com.atlassian.confluence.plugin   
com.atlassian.confluence.plugins.macros.dashboard.recentupdates   
com.atlassian.confluence.plugins.macros.dashboard.recentupdates.rest.serialisers   
com.atlassian.confluence.plugins.rest.entities.builders   
com.atlassian.confluence.plugins.spacedirectory.rest   
com.atlassian.confluence.rpc.soap.beans   
com.atlassian.confluence.search   
com.atlassian.confluence.search.actions   
com.atlassian.confluence.search.v2 Provides an extensible, flexible search API. 
com.atlassian.confluence.search.v2.lucene Provides a Lucene-backed implementation of the SearchManager
com.atlassian.confluence.search.v2.lucene.compatibility Backwards compatibility wrappers to bridge between the old and new search APIs 
com.atlassian.confluence.util.actions   
 

Uses of SearchResult in com.atlassian.confluence.content.render.xhtml.migration.macro
 

Methods in com.atlassian.confluence.content.render.xhtml.migration.macro that return types with arguments of type SearchResult
 Iterator<SearchResult> ContentRemigrationAction.getSearchResults()
           
 

Constructor parameters in com.atlassian.confluence.content.render.xhtml.migration.macro with type arguments of type SearchResult
SearchResultsBatchWorkSource(SearchManager searchManager, List<SearchResult> searchResults, int batchSize, com.google.common.base.Function<com.atlassian.bonnie.Searchable,T> transformer)
           
 

Uses of SearchResult in com.atlassian.confluence.content.ui
 

Methods in com.atlassian.confluence.content.ui with parameters of type SearchResult
 String SimpleUiSupport.getContentTypeI18NKey(SearchResult result)
           
 String PageUiSupport.getContentTypeI18NKey(SearchResult result)
           
 String DefaultContentUiSupport.getContentTypeI18NKey(SearchResult result)
           
 String ContentUiSupport.getContentTypeI18NKey(SearchResult result)
          Get the I18N key for the content that is being referred to by this search result
 String AttachmentUiSupport.getContentTypeI18NKey(SearchResult result)
           
 String SimpleUiSupport.getIconCssClass(SearchResult result)
           
 String PageUiSupport.getIconCssClass(SearchResult result)
           
 String DefaultContentUiSupport.getIconCssClass(SearchResult result)
           
 String ContentUiSupport.getIconCssClass(SearchResult result)
          Get the CSS class that can be applied to add an icon to some inline element describing the given result.
 String AttachmentUiSupport.getIconCssClass(SearchResult result)
           
 

Uses of SearchResult in com.atlassian.confluence.json.jsonator
 

Methods in com.atlassian.confluence.json.jsonator with parameters of type SearchResult
 Json SearchResultJsonator.convert(SearchResult result)
           
 

Uses of SearchResult in com.atlassian.confluence.plugin
 

Methods in com.atlassian.confluence.plugin with parameters of type SearchResult
 boolean SearchResultRenderer.canRender(SearchResult searchResult)
          Indicates if this paricular plugin can (and want) to render the given search result.
 String SearchResultRenderer.render(SearchResult searchResult, SearchResultRenderContext renderContext)
          Render the given search result.
 

Uses of SearchResult in com.atlassian.confluence.plugins.macros.dashboard.recentupdates
 

Methods in com.atlassian.confluence.plugins.macros.dashboard.recentupdates that return SearchResult
 SearchResult RecentUpdate.getEntity()
           
 

Constructors in com.atlassian.confluence.plugins.macros.dashboard.recentupdates with parameters of type SearchResult
RecentUpdate(SearchResult result, FriendlyDateFormatter dateFormatter, String contextPath, StatusTextRenderer statusTextRenderer, ContentUiSupport contentUiSupport, I18NBeanFactory i18NBeanFactory)
           
 

Uses of SearchResult in com.atlassian.confluence.plugins.macros.dashboard.recentupdates.rest.serialisers
 

Methods in com.atlassian.confluence.plugins.macros.dashboard.recentupdates.rest.serialisers with parameters of type SearchResult
 void SearchResultSerialiser.serialize(SearchResult searchResult, org.codehaus.jackson.JsonGenerator jgen, org.codehaus.jackson.map.SerializerProvider provider)
           
 

Uses of SearchResult in com.atlassian.confluence.plugins.rest.entities.builders
 

Methods in com.atlassian.confluence.plugins.rest.entities.builders with parameters of type SearchResult
 SearchResultEntity SpaceEntityBuilder.build(SearchResult result)
           
 SearchResultEntity SearchEntityBuilder.build(SearchResult result)
          Builds a REST ContentEntity for the given search result
 SearchResultEntity PersonalInformationContentEntityBuilder.build(SearchResult result)
           
 SearchResultEntity DefaultContentEntityBuilder.build(SearchResult result)
           
 SearchResultEntity AttachmentEntityBuilder.build(SearchResult result)
           
 

Uses of SearchResult in com.atlassian.confluence.plugins.spacedirectory.rest
 

Methods in com.atlassian.confluence.plugins.spacedirectory.rest with parameters of type SearchResult
 SpaceDirectoryEntity SpaceDirectoryEntityBuilder.build(SearchResult searchResult)
           
 SpaceDirectoryEntity DefaultSpaceDirectoryEntityBuilder.build(SearchResult searchResult)
           
 

Uses of SearchResult in com.atlassian.confluence.rpc.soap.beans
 

Constructors in com.atlassian.confluence.rpc.soap.beans with parameters of type SearchResult
RemoteSearchResult(SearchResult searchResult)
           
RemoteSearchResult(SearchResult searchResult, String query)
          Construct a new RemoteSearchResult from a SearchResult and the original query
 

Uses of SearchResult in com.atlassian.confluence.search
 

Methods in com.atlassian.confluence.search with parameters of type SearchResult
 boolean DefaultSearchResultResultRenderer.canRender(SearchResult searchResult)
           
 String DelegatedSearchResultRenderer.render(SearchResult searchResult, SearchResultRenderContext renderContext)
          Render the given search result.
 String DefaultSearchResultResultRenderer.render(SearchResult searchResult, SearchResultRenderContext renderContext)
           
 

Uses of SearchResult in com.atlassian.confluence.search.actions
 

Methods in com.atlassian.confluence.search.actions that return types with arguments of type SearchResult
 List<SearchResult> SearchSiteAction.getResults()
           
 

Methods in com.atlassian.confluence.search.actions with parameters of type SearchResult
 com.atlassian.bonnie.search.summary.Summary SearchSiteAction.getLabelsSummaryForResult(SearchResult result)
           
 String SearchSiteAction.getSummaryForResult(SearchResult result)
           
 String SearchSiteAction.getTitleForResult(SearchResult result)
           
 WebInterfaceContext SearchSiteAction.getWebInterfaceContext(SearchResult result)
           
 String SearchSiteAction.newSearchResult(SearchResult searchResult, String showExcerpts, String queryString)
           
 

Uses of SearchResult in com.atlassian.confluence.search.v2
 

Methods in com.atlassian.confluence.search.v2 that return types with arguments of type SearchResult
 List<SearchResult> SearchResults.getAll()
          Creates a new list containing all returned search results.
 Iterator<SearchResult> SearchResults.iterator()
          Gets an iterator to run through the returned search results.
 

Uses of SearchResult in com.atlassian.confluence.search.v2.lucene
 

Classes in com.atlassian.confluence.search.v2.lucene that implement SearchResult
 class AbstractLuceneSearchResult
           
 class LuceneSearchResult
           
 

Methods in com.atlassian.confluence.search.v2.lucene that return types with arguments of type SearchResult
 List<SearchResult> LuceneSearchResults.getAll()
           
 List<SearchResult> SearcherAction.getResults()
           
 Iterator<SearchResult> LuceneSearchResults.iterator()
           
 

Constructor parameters in com.atlassian.confluence.search.v2.lucene with type arguments of type SearchResult
LuceneSearchResults(List<? extends SearchResult> luceneResult, int unfilteredResultsCount)
           
 

Uses of SearchResult in com.atlassian.confluence.search.v2.lucene.compatibility
 

Methods in com.atlassian.confluence.search.v2.lucene.compatibility with parameters of type SearchResult
static SearchResultWithExcerpt SearchResultToSearchResultWithExcerptConverter.convertToSearchResultWithExcerpt(SearchResult result)
           
 

Uses of SearchResult in com.atlassian.confluence.util.actions
 

Methods in com.atlassian.confluence.util.actions with parameters of type SearchResult
 String ContentTypesDisplayMapper.getClassName(SearchResult result)
          Get the CSS class name for the supplied SearchResult.
 



Copyright © 2003-2013 Atlassian. All Rights Reserved.