Uses of Class
org.elasticsearch.search.facet.FacetCollector

Packages that use FacetCollector
org.elasticsearch.index.search.nested   
org.elasticsearch.search.facet   
org.elasticsearch.search.facet.datehistogram   
org.elasticsearch.search.facet.filter   
org.elasticsearch.search.facet.geodistance   
org.elasticsearch.search.facet.histogram   
org.elasticsearch.search.facet.histogram.bounded   
org.elasticsearch.search.facet.histogram.unbounded   
org.elasticsearch.search.facet.query   
org.elasticsearch.search.facet.range   
org.elasticsearch.search.facet.statistical   
org.elasticsearch.search.facet.terms   
org.elasticsearch.search.facet.terms.bytes   
org.elasticsearch.search.facet.terms.doubles   
org.elasticsearch.search.facet.terms.floats   
org.elasticsearch.search.facet.terms.index   
org.elasticsearch.search.facet.terms.ints   
org.elasticsearch.search.facet.terms.ip   
org.elasticsearch.search.facet.terms.longs   
org.elasticsearch.search.facet.terms.shorts   
org.elasticsearch.search.facet.terms.strings   
org.elasticsearch.search.facet.termsstats   
org.elasticsearch.search.facet.termsstats.doubles   
org.elasticsearch.search.facet.termsstats.longs   
org.elasticsearch.search.facet.termsstats.strings   
 

Uses of FacetCollector in org.elasticsearch.index.search.nested
 

Subclasses of FacetCollector in org.elasticsearch.index.search.nested
 class NestedChildrenCollector
          A collector that accepts parent docs, and calls back the collect on child docs of that parent.
 

Constructors in org.elasticsearch.index.search.nested with parameters of type FacetCollector
NestedChildrenCollector(FacetCollector collector, org.apache.lucene.search.Filter parentFilter, org.apache.lucene.search.Filter childFilter)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet
 

Subclasses of FacetCollector in org.elasticsearch.search.facet
 class AbstractFacetCollector
           
 

Methods in org.elasticsearch.search.facet that return FacetCollector
 FacetCollector FacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Methods in org.elasticsearch.search.facet that return types with arguments of type FacetCollector
 List<FacetCollector> SearchContextFacets.facetCollectors()
           
 

Constructor parameters in org.elasticsearch.search.facet with type arguments of type FacetCollector
SearchContextFacets(List<FacetCollector> facetCollectors)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.datehistogram
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.datehistogram
 class CountDateHistogramFacetCollector
          A date histogram facet collector that uses the same field as the key as well as the value.
 class ValueDateHistogramFacetCollector
          A histogram facet collector that uses different fields for the key and the value.
 class ValueScriptDateHistogramFacetCollector
          A histogram facet collector that uses the same field as the key as well as the value.
 

Methods in org.elasticsearch.search.facet.datehistogram that return FacetCollector
 FacetCollector DateHistogramFacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.filter
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.filter
 class FilterFacetCollector
           
 

Methods in org.elasticsearch.search.facet.filter that return FacetCollector
 FacetCollector FilterFacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.geodistance
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.geodistance
 class GeoDistanceFacetCollector
           
 class ScriptGeoDistanceFacetCollector
           
 class ValueGeoDistanceFacetCollector
           
 

Methods in org.elasticsearch.search.facet.geodistance that return FacetCollector
 FacetCollector GeoDistanceFacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.histogram
 

Methods in org.elasticsearch.search.facet.histogram that return FacetCollector
 FacetCollector HistogramFacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.histogram.bounded
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.histogram.bounded
 class BoundedCountHistogramFacetCollector
           
 class BoundedValueHistogramFacetCollector
           
 class BoundedValueScriptHistogramFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.histogram.unbounded
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.histogram.unbounded
 class CountHistogramFacetCollector
          A histogram facet collector that uses the same field as the key as well as the value.
 class FullHistogramFacetCollector
          A histogram facet collector that uses the same field as the key as well as the value.
 class ScriptHistogramFacetCollector
           
 class ValueHistogramFacetCollector
          A histogram facet collector that uses different fields for the key and the value.
 class ValueScriptHistogramFacetCollector
          A histogram facet collector that uses the same field as the key as well as the value.
 

Uses of FacetCollector in org.elasticsearch.search.facet.query
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.query
 class QueryFacetCollector
           
 

Methods in org.elasticsearch.search.facet.query that return FacetCollector
 FacetCollector QueryFacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.range
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.range
 class KeyValueRangeFacetCollector
           
 class RangeFacetCollector
           
 class ScriptRangeFacetCollector
           
 

Methods in org.elasticsearch.search.facet.range that return FacetCollector
 FacetCollector RangeFacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.statistical
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.statistical
 class ScriptStatisticalFacetCollector
           
 class StatisticalFacetCollector
           
 class StatisticalFieldsFacetCollector
           
 

Methods in org.elasticsearch.search.facet.statistical that return FacetCollector
 FacetCollector StatisticalFacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms
 

Methods in org.elasticsearch.search.facet.terms that return FacetCollector
 FacetCollector TermsFacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms.bytes
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.terms.bytes
 class TermsByteFacetCollector
           
 class TermsByteOrdinalsFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms.doubles
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.terms.doubles
 class TermsDoubleFacetCollector
           
 class TermsDoubleOrdinalsFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms.floats
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.terms.floats
 class TermsFloatFacetCollector
           
 class TermsFloatOrdinalsFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms.index
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.terms.index
 class IndexNameFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms.ints
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.terms.ints
 class TermsIntFacetCollector
           
 class TermsIntOrdinalsFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms.ip
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.terms.ip
 class TermsIpFacetCollector
           
 class TermsIpOrdinalsFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms.longs
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.terms.longs
 class TermsLongFacetCollector
           
 class TermsLongOrdinalsFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms.shorts
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.terms.shorts
 class TermsShortFacetCollector
           
 class TermsShortOrdinalsFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.terms.strings
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.terms.strings
 class FieldsTermsStringFacetCollector
           
 class ScriptTermsStringFieldFacetCollector
           
 class TermsStringFacetCollector
           
 class TermsStringOrdinalsFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.termsstats
 

Methods in org.elasticsearch.search.facet.termsstats that return FacetCollector
 FacetCollector TermsStatsFacetProcessor.parse(String facetName, XContentParser parser, SearchContext context)
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.termsstats.doubles
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.termsstats.doubles
 class TermsStatsDoubleFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.termsstats.longs
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.termsstats.longs
 class TermsStatsLongFacetCollector
           
 

Uses of FacetCollector in org.elasticsearch.search.facet.termsstats.strings
 

Subclasses of FacetCollector in org.elasticsearch.search.facet.termsstats.strings
 class TermsStatsStringFacetCollector
           
 



Copyright © 2009-2012. All Rights Reserved.