Uses of Class
org.mycore.services.fieldquery.MCRResults

Packages that use MCRResults
org.mycore.backend.jdom   
org.mycore.backend.lucene   
org.mycore.frontend.indexbrowser.lucene   
org.mycore.services.fieldquery   
 

Uses of MCRResults in org.mycore.backend.jdom
 

Methods in org.mycore.backend.jdom that return MCRResults
 MCRResults MCRJDOMSearcher.search(MCRCondition condition, int maxResults, List sortBy, boolean addSortData)
           
 

Uses of MCRResults in org.mycore.backend.lucene
 

Methods in org.mycore.backend.lucene that return MCRResults
 MCRResults MCROldLuceneSearcher.search(MCRCondition condition, int maxResults, List<MCRSortBy> sortBy, boolean addSortData)
          Deprecated.  
 MCRResults MCRLuceneSearcher.search(MCRCondition condition, int maxResults, List<MCRSortBy> sortBy, boolean addSortData)
          As opposed to MCRSearcher the returned MCRResult is read only.
 

Uses of MCRResults in org.mycore.frontend.indexbrowser.lucene
 

Fields in org.mycore.frontend.indexbrowser.lucene declared as MCRResults
protected  MCRResults MCRIndexBrowserSearcher.results
           
 

Methods in org.mycore.frontend.indexbrowser.lucene that return MCRResults
protected  MCRResults MCRIndexBrowserSearcher.search()
           
 

Uses of MCRResults in org.mycore.services.fieldquery
 

Methods in org.mycore.services.fieldquery that return MCRResults
 MCRResults MCRCachedQueryData.getResults()
           
static MCRResults MCRResults.intersect(MCRResults... others)
          Does a logical and of this results hits and other results hits.
static MCRResults MCRMoreLikeThis.moreLikeThis(MCRFieldValue value, double minScore, int maxResults)
          Does "more like this" query, used to find documents with similar content.
abstract  MCRResults MCRSearcher.search(MCRCondition condition, int maxResults, List<MCRSortBy> sortBy, boolean addSortData)
          Executes a query on this searcher.
static MCRResults MCRQueryManager.search(MCRQuery query)
          Executes a query and returns the query results.
static MCRResults MCRQueryManager.search(MCRQuery query, boolean comesFromRemoteHost)
          Executes a query and returns the query results.
static MCRResults MCRResults.union(MCRResults... others)
          Adds all hits of another result list that are not yet in this result list.
 

Methods in org.mycore.services.fieldquery with parameters of type MCRResults
static void MCRCachedQueryData.cache(MCRResults results, Document query, MCRCondition condition)
           
static MCRResults MCRResults.intersect(MCRResults... others)
          Does a logical and of this results hits and other results hits.
 void MCRQueryClientWebService.search(Document inDoc, MCRResults results)
          Executes a query on a single remote host using the defined service.
 void MCRQueryClientInterface.search(Document inDoc, MCRResults results)
          Executes a query on a single remote host using the defined service.
 void MCRQueryClientBase.search(Document inDoc, MCRResults results)
          Executes a query on a single remote host using the defined service.
(package private) static void MCRQueryClient.search(MCRQuery query, MCRResults results)
          Executes a query on the given list of remote hosts and merges the results to the given result list.
static MCRResults MCRResults.union(MCRResults... others)
          Adds all hits of another result list that are not yet in this result list.