congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
IssueSearcherManager.getSearcherGroups
Code IndexAdd Tabnine to your IDE (free)

How to use
getSearcherGroups
method
in
com.atlassian.jira.issue.search.managers.IssueSearcherManager

Best Java code snippets using com.atlassian.jira.issue.search.managers.IssueSearcherManager.getSearcherGroups (Showing top 2 results out of 315)

origin: com.atlassian.jira/jira-core

public Collection getSearcherGroups()
{
  return issueSearcherManager.getSearcherGroups();
}
origin: com.atlassian.jira/jira-core

private Collection<String> getSearcherViewHtmlDescriptions(final SearchRequest searchRequest)
{
  final List<String> descriptions = new ArrayList<String>();
  final Collection<SearcherGroup> searcherGroups = issueSearcherManager.getSearcherGroups();
  for (final SearcherGroup searcherGroup : searcherGroups)
  {
    for (final Object element : searcherGroup.getSearchers())
    {
      final IssueSearcher issueSearcher = (IssueSearcher) element;
      descriptions.add(getSearcherViewHtml(issueSearcher, searchRequest));
    }
  }
  return descriptions;
}
com.atlassian.jira.issue.search.managersIssueSearcherManagergetSearcherGroups

Javadoc

Get all searcher groups. Note that the com.atlassian.jira.issue.search.searchers.SearcherGroup will still appear even if no IssueSearcher are shown for the group.

Popular methods of IssueSearcherManager

  • getAllSearchers
    Return all the active searchers in JIRA. It will not return the searchers unless they are associated
  • getSearcher
    Get a searcher by the searchers name.
  • refresh
    Refreshes the IssueSearcher cache

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getApplicationContext (Context)
  • getSharedPreferences (Context)
  • compareTo (BigDecimal)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now