Uses of Class
org.apache.lucene.facet.search.results.FacetResult

Packages that use FacetResult
org.apache.lucene.facet.example   
org.apache.lucene.facet.example.adaptive   
org.apache.lucene.facet.example.association   
org.apache.lucene.facet.example.multiCL   
org.apache.lucene.facet.example.simple Simple faceted indexing and search sample 
org.apache.lucene.facet.search Faceted Search API 
org.apache.lucene.facet.search.sampling Sampling for facets accumulation 
 

Uses of FacetResult in org.apache.lucene.facet.example
 

Methods in org.apache.lucene.facet.example that return types with arguments of type FacetResult
 List<FacetResult> ExampleResult.getFacetResults()
           
 

Method parameters in org.apache.lucene.facet.example with type arguments of type FacetResult
 void ExampleResult.setFacetResults(List<FacetResult> facetResults)
           
 

Uses of FacetResult in org.apache.lucene.facet.example.adaptive
 

Methods in org.apache.lucene.facet.example.adaptive that return types with arguments of type FacetResult
static List<FacetResult> AdaptiveSearcher.searchWithFacets(org.apache.lucene.store.Directory indexDir, org.apache.lucene.store.Directory taxoDir)
          Search with facets through the AdaptiveFacetsAccumulator
 

Uses of FacetResult in org.apache.lucene.facet.example.association
 

Methods in org.apache.lucene.facet.example.association that return types with arguments of type FacetResult
static List<FacetResult> AssociationSearcher.searchSumFloatAssociation(org.apache.lucene.store.Directory indexDir, org.apache.lucene.store.Directory taxoDir)
          Search an index with a sum of float-association.
static List<FacetResult> AssociationSearcher.searchSumIntAssociation(org.apache.lucene.store.Directory indexDir, org.apache.lucene.store.Directory taxoDir)
          Search an index with a sum of int-association.
 

Uses of FacetResult in org.apache.lucene.facet.example.multiCL
 

Methods in org.apache.lucene.facet.example.multiCL that return types with arguments of type FacetResult
static List<FacetResult> MultiCLSearcher.searchWithFacets(org.apache.lucene.store.Directory indexDir, org.apache.lucene.store.Directory taxoDir, FacetIndexingParams iParams)
          Search an index with facets.
static List<FacetResult> MultiCLSearcher.searchWithFacets(org.apache.lucene.index.IndexReader indexReader, TaxonomyReader taxo, FacetIndexingParams iParams)
           
 

Uses of FacetResult in org.apache.lucene.facet.example.simple
 

Methods in org.apache.lucene.facet.example.simple that return types with arguments of type FacetResult
static List<FacetResult> SimpleSearcher.searchWithDrillDown(org.apache.lucene.index.IndexReader indexReader, TaxonomyReader taxoReader)
          Search an index with facets drill-down.
static List<FacetResult> SimpleSearcher.searchWithFacets(org.apache.lucene.index.IndexReader indexReader, TaxonomyReader taxoReader)
          Search an index with facets.
static List<FacetResult> SimpleSearcher.searchWithRequest(org.apache.lucene.index.IndexReader indexReader, TaxonomyReader taxoReader, FacetIndexingParams indexingParams, FacetRequest... facetRequests)
          Search an index with facets for given facet requests.
static List<FacetResult> SimpleSearcher.searchWithRequestAndQuery(org.apache.lucene.search.Query q, org.apache.lucene.index.IndexReader indexReader, TaxonomyReader taxoReader, FacetIndexingParams indexingParams, FacetRequest... facetRequests)
          Search an index with facets for given query and facet requests.
 

Uses of FacetResult in org.apache.lucene.facet.search
 

Methods in org.apache.lucene.facet.search that return FacetResult
 FacetResult TopKFacetResultsHandler.rearrangeFacetResult(FacetResult facetResult)
           
 FacetResult TopKInEachNodeHandler.rearrangeFacetResult(FacetResult facetResult)
           
abstract  FacetResult FacetResultsHandler.rearrangeFacetResult(FacetResult facetResult)
          Perform any rearrangement as required on a facet result that has changed after it was rendered.
 FacetResult TopKFacetResultsHandler.renderFacetResult(IntermediateFacetResult tmpResult)
           
 FacetResult TopKInEachNodeHandler.renderFacetResult(IntermediateFacetResult tmpResult)
           
abstract  FacetResult FacetResultsHandler.renderFacetResult(IntermediateFacetResult tmpResult)
          Create a facet result from the temporary result.
 

Methods in org.apache.lucene.facet.search that return types with arguments of type FacetResult
abstract  List<FacetResult> FacetsAccumulator.accumulate(ScoredDocIDs docids)
          Accumulate facets over given documents, according to facet requests in effect.
 List<FacetResult> AdaptiveFacetsAccumulator.accumulate(ScoredDocIDs docids)
           
 List<FacetResult> StandardFacetsAccumulator.accumulate(ScoredDocIDs docids)
           
 List<FacetResult> SamplingWrapper.accumulate(ScoredDocIDs docids)
           
 List<FacetResult> FacetsCollector.getFacetResults()
          Return accumulated facets results (according to faceted search parameters) for collected documents.
 

Methods in org.apache.lucene.facet.search with parameters of type FacetResult
 void TopKFacetResultsHandler.labelResult(FacetResult facetResult)
           
 void TopKInEachNodeHandler.labelResult(FacetResult facetResult)
           
abstract  void FacetResultsHandler.labelResult(FacetResult facetResult)
          Label results according to settings in FacetRequest, such as FacetRequest.getNumLabel().
 FacetResult TopKFacetResultsHandler.rearrangeFacetResult(FacetResult facetResult)
           
 FacetResult TopKInEachNodeHandler.rearrangeFacetResult(FacetResult facetResult)
           
abstract  FacetResult FacetResultsHandler.rearrangeFacetResult(FacetResult facetResult)
          Perform any rearrangement as required on a facet result that has changed after it was rendered.
 

Uses of FacetResult in org.apache.lucene.facet.search.sampling
 

Methods in org.apache.lucene.facet.search.sampling that return FacetResult
 FacetResult Sampler.trimResult(FacetResult facetResult)
          Trim the input facet result.
Note: It is only valid to call this method with result obtained for a facet request created through Sampler.overSampledSearchParams(FacetSearchParams).
 

Methods in org.apache.lucene.facet.search.sampling that return types with arguments of type FacetResult
 List<FacetResult> SamplingAccumulator.accumulate(ScoredDocIDs docids)
           
 

Methods in org.apache.lucene.facet.search.sampling with parameters of type FacetResult
 void SampleFixer.fixResult(ScoredDocIDs origDocIds, FacetResult fres)
          Alter the input result, fixing it to account for the sampling.
 FacetResult Sampler.trimResult(FacetResult facetResult)
          Trim the input facet result.
Note: It is only valid to call this method with result obtained for a facet request created through Sampler.overSampledSearchParams(FacetSearchParams).
 



Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.