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

Packages that use FacetResult
org.apache.lucene.facet.old Old faceted search API, kept until complements, sampling and partitions are migrated to the new API. 
org.apache.lucene.facet.partitions Category Partitions 
org.apache.lucene.facet.range Code to compute facets for numeric ranges. 
org.apache.lucene.facet.sampling Facets sampling. 
org.apache.lucene.facet.search Facets search code. 
org.apache.lucene.facet.sortedset Classes to perform faceting without a separate taxonomy index, using on SortedSetDocValuesField. 
 

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

Methods in org.apache.lucene.facet.old that return types with arguments of type FacetResult
 List<FacetResult> OldFacetsAccumulator.accumulate(List<FacetsCollector.MatchingDocs> matchingDocs)
           
 List<FacetResult> OldFacetsAccumulator.accumulate(ScoredDocIDs docids)
           
 List<FacetResult> AdaptiveFacetsAccumulator.accumulate(ScoredDocIDs docids)
           
 

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

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

Methods in org.apache.lucene.facet.partitions with parameters of type FacetResult
abstract  void PartitionsFacetResultsHandler.labelResult(FacetResult facetResult)
          Label results according to settings in FacetRequest, such as FacetRequest.getNumLabel().
abstract  FacetResult PartitionsFacetResultsHandler.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.range
 

Methods in org.apache.lucene.facet.range that return types with arguments of type FacetResult
 List<FacetResult> RangeAccumulator.accumulate(List<FacetsCollector.MatchingDocs> matchingDocs)
           
 

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

Methods in org.apache.lucene.facet.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.sampling that return types with arguments of type FacetResult
 List<FacetResult> SamplingAccumulator.accumulate(ScoredDocIDs docids)
           
 List<FacetResult> SamplingWrapper.accumulate(ScoredDocIDs docids)
           
 

Methods in org.apache.lucene.facet.sampling with parameters of type FacetResult
 void SampleFixer.fixResult(ScoredDocIDs origDocIds, FacetResult fres, double samplingRatio)
          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).
 

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

Fields in org.apache.lucene.facet.search with type parameters of type FacetResult
 List<FacetResult> DrillSideways.DrillSidewaysResult.facetResults
          Combined drill down & sideways results.
 

Methods in org.apache.lucene.facet.search that return FacetResult
 FacetResult DepthOneFacetResultsHandler.compute()
           
abstract  FacetResult FacetResultsHandler.compute()
          Computes the FacetResult for the given FacetArrays.
protected static FacetResult FacetsAccumulator.emptyResult(int ordinal, FacetRequest fr)
          Returns an empty FacetResult.
 FacetResult TopKInEachNodeHandler.rearrangeFacetResult(FacetResult facetResult)
           
 FacetResult TopKFacetResultsHandler.rearrangeFacetResult(FacetResult facetResult)
           
 FacetResult TopKInEachNodeHandler.renderFacetResult(IntermediateFacetResult tmpResult)
           
 FacetResult TopKFacetResultsHandler.renderFacetResult(IntermediateFacetResult tmpResult)
           
 

Methods in org.apache.lucene.facet.search that return types with arguments of type FacetResult
 List<FacetResult> TaxonomyFacetsAccumulator.accumulate(List<FacetsCollector.MatchingDocs> matchingDocs)
          Used by FacetsCollector to build the list of facet results that match the facet requests that were given in the constructor.
abstract  List<FacetResult> FacetsAccumulator.accumulate(List<FacetsCollector.MatchingDocs> matchingDocs)
          Used by FacetsCollector to build the list of facet results that match the facet requests that were given in the constructor.
 List<FacetResult> MultiFacetsAccumulator.accumulate(List<FacetsCollector.MatchingDocs> matchingDocs)
           
 List<FacetResult> FacetsCollector.getFacetResults()
          Returns a FacetResult per FacetRequest set in FacetSearchParams.
static List<FacetResult> FacetResult.mergeHierarchies(List<FacetResult> results, TaxonomyReader taxoReader, Map<String,FacetArrays> dimArrays)
          A utility for merging multiple FacetResult of the same (hierarchical) dimension into a single FacetResult, to reconstruct the hierarchy.
 

Methods in org.apache.lucene.facet.search with parameters of type FacetResult
 void TopKInEachNodeHandler.labelResult(FacetResult facetResult)
           
 void TopKFacetResultsHandler.labelResult(FacetResult facetResult)
           
 FacetResult TopKInEachNodeHandler.rearrangeFacetResult(FacetResult facetResult)
           
 FacetResult TopKFacetResultsHandler.rearrangeFacetResult(FacetResult facetResult)
           
 

Method parameters in org.apache.lucene.facet.search with type arguments of type FacetResult
static List<FacetResult> FacetResult.mergeHierarchies(List<FacetResult> results, TaxonomyReader taxoReader, Map<String,FacetArrays> dimArrays)
          A utility for merging multiple FacetResult of the same (hierarchical) dimension into a single FacetResult, to reconstruct the hierarchy.
 

Constructor parameters in org.apache.lucene.facet.search with type arguments of type FacetResult
DrillSideways.DrillSidewaysResult(List<FacetResult> facetResults, TopDocs hits)
           
 

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

Methods in org.apache.lucene.facet.sortedset that return types with arguments of type FacetResult
 List<FacetResult> SortedSetDocValuesAccumulator.accumulate(List<FacetsCollector.MatchingDocs> matchingDocs)
           
 



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