Uses of Class
org.elasticsearch.search.facet.histogram.HistogramFacet.ComparatorType

Packages that use HistogramFacet.ComparatorType
org.elasticsearch.search.facet.histogram   
org.elasticsearch.search.facet.histogram.bounded   
org.elasticsearch.search.facet.histogram.unbounded   
 

Uses of HistogramFacet.ComparatorType in org.elasticsearch.search.facet.histogram
 

Methods in org.elasticsearch.search.facet.histogram that return HistogramFacet.ComparatorType
static HistogramFacet.ComparatorType HistogramFacet.ComparatorType.fromId(byte id)
           
static HistogramFacet.ComparatorType HistogramFacet.ComparatorType.fromString(String type)
           
static HistogramFacet.ComparatorType HistogramFacet.ComparatorType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HistogramFacet.ComparatorType[] HistogramFacet.ComparatorType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.elasticsearch.search.facet.histogram with parameters of type HistogramFacet.ComparatorType
 HistogramFacetBuilder HistogramFacetBuilder.comparator(HistogramFacet.ComparatorType comparatorType)
           
 HistogramScriptFacetBuilder HistogramScriptFacetBuilder.comparator(HistogramFacet.ComparatorType comparatorType)
           
 

Uses of HistogramFacet.ComparatorType in org.elasticsearch.search.facet.histogram.bounded
 

Constructors in org.elasticsearch.search.facet.histogram.bounded with parameters of type HistogramFacet.ComparatorType
BoundedCountHistogramFacetCollector(String facetName, String fieldName, long interval, long from, long to, HistogramFacet.ComparatorType comparatorType, SearchContext context)
           
BoundedValueHistogramFacetCollector(String facetName, String keyFieldName, String valueFieldName, long interval, long from, long to, HistogramFacet.ComparatorType comparatorType, SearchContext context)
           
BoundedValueScriptHistogramFacetCollector(String facetName, String fieldName, String scriptLang, String valueScript, Map<String,Object> params, long interval, long from, long to, HistogramFacet.ComparatorType comparatorType, SearchContext context)
           
InternalBoundedCountHistogramFacet(String name, HistogramFacet.ComparatorType comparatorType, long interval, long offset, int size, int[] counts, boolean cachedCounts)
           
InternalBoundedFullHistogramFacet(String name, HistogramFacet.ComparatorType comparatorType, long interval, long offset, int size, Object[] entries, boolean cachedEntries)
           
 

Uses of HistogramFacet.ComparatorType in org.elasticsearch.search.facet.histogram.unbounded
 

Constructors in org.elasticsearch.search.facet.histogram.unbounded with parameters of type HistogramFacet.ComparatorType
CountHistogramFacetCollector(String facetName, String fieldName, long interval, HistogramFacet.ComparatorType comparatorType, SearchContext context)
           
FullHistogramFacetCollector(String facetName, String fieldName, long interval, HistogramFacet.ComparatorType comparatorType, SearchContext context)
           
InternalCountHistogramFacet(String name, HistogramFacet.ComparatorType comparatorType, gnu.trove.map.hash.TLongLongHashMap counts, boolean cachedCounts)
           
InternalFullHistogramFacet(String name, HistogramFacet.ComparatorType comparatorType, ExtTLongObjectHashMap<InternalFullHistogramFacet.FullEntry> entries, boolean cachedEntries)
           
ScriptHistogramFacetCollector(String facetName, String scriptLang, String keyScript, String valueScript, Map<String,Object> params, long interval, HistogramFacet.ComparatorType comparatorType, SearchContext context)
           
ValueHistogramFacetCollector(String facetName, String keyFieldName, String valueFieldName, long interval, HistogramFacet.ComparatorType comparatorType, SearchContext context)
           
ValueScriptHistogramFacetCollector(String facetName, String fieldName, String scriptLang, String valueScript, Map<String,Object> params, long interval, HistogramFacet.ComparatorType comparatorType, SearchContext context)
           
 



Copyright © 2009-2012. All Rights Reserved.