Uses of Interface
org.elasticsearch.script.SearchScript

Packages that use SearchScript
org.elasticsearch.index.field.function.sort   
org.elasticsearch.index.query   
org.elasticsearch.script   
org.elasticsearch.script.mvel   
org.elasticsearch.search.facet.datehistogram   
org.elasticsearch.search.facet.histogram.bounded   
org.elasticsearch.search.facet.histogram.unbounded   
org.elasticsearch.search.facet.terms.bytes   
org.elasticsearch.search.facet.terms.doubles   
org.elasticsearch.search.facet.terms.floats   
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.doubles   
org.elasticsearch.search.facet.termsstats.longs   
org.elasticsearch.search.facet.termsstats.strings   
org.elasticsearch.search.fetch.script   
 

Uses of SearchScript in org.elasticsearch.index.field.function.sort
 

Methods in org.elasticsearch.index.field.function.sort with parameters of type SearchScript
static FieldDataType.ExtendedFieldComparatorSource StringFieldsFunctionDataComparator.comparatorSource(SearchScript script)
           
static FieldDataType.ExtendedFieldComparatorSource DoubleFieldsFunctionDataComparator.comparatorSource(SearchScript script)
           
 

Constructors in org.elasticsearch.index.field.function.sort with parameters of type SearchScript
DoubleFieldsFunctionDataComparator(int numHits, SearchScript script)
           
StringFieldsFunctionDataComparator(int numHits, SearchScript script)
           
 

Uses of SearchScript in org.elasticsearch.index.query
 

Constructors in org.elasticsearch.index.query with parameters of type SearchScript
CustomScoreQueryParser.ScriptScoreFunction(String sScript, Map<String,Object> params, SearchScript script)
           
 

Uses of SearchScript in org.elasticsearch.script
 

Subinterfaces of SearchScript in org.elasticsearch.script
 interface ExplainableSearchScript
          To be implemented by SearchScript which can provided an Explanation of the score
 

Classes in org.elasticsearch.script that implement SearchScript
 class AbstractDoubleSearchScript
          A simpler base class instead of AbstractSearchScript for computations that return a double number.
 class AbstractFloatSearchScript
          A simpler base class instead of AbstractSearchScript for computations that return a float number.
 class AbstractLongSearchScript
          A simpler base class instead of AbstractSearchScript for computations that return a long number.
 class AbstractSearchScript
          A base class for any script type that is used during the search process (custom score, facets, and so on).
static class ScriptService.DocScoreSearchScript
           
 

Methods in org.elasticsearch.script that return SearchScript
 SearchScript ScriptService.search(CompiledScript compiledScript, SearchLookup lookup, Map<String,Object> vars)
           
 SearchScript ScriptService.search(MapperService mapperService, FieldDataCache fieldDataCache, String lang, String script, Map<String,Object> vars)
           
 SearchScript ScriptEngineService.search(Object compiledScript, SearchLookup lookup, Map<String,Object> vars)
           
 SearchScript NativeScriptEngineService.search(Object compiledScript, SearchLookup lookup, Map<String,Object> vars)
           
 SearchScript ScriptService.search(SearchLookup lookup, String lang, String script, Map<String,Object> vars)
           
 

Uses of SearchScript in org.elasticsearch.script.mvel
 

Classes in org.elasticsearch.script.mvel that implement SearchScript
static class MvelScriptEngineService.MvelSearchScript
           
 

Methods in org.elasticsearch.script.mvel that return SearchScript
 SearchScript MvelScriptEngineService.search(Object compiledScript, SearchLookup lookup, Map<String,Object> vars)
           
 

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

Fields in org.elasticsearch.search.facet.datehistogram declared as SearchScript
protected  SearchScript ValueScriptDateHistogramFacetCollector.DateHistogramProc.valueScript
           
 

Constructors in org.elasticsearch.search.facet.datehistogram with parameters of type SearchScript
ValueScriptDateHistogramFacetCollector.DateHistogramProc(TimeZoneRounding tzRounding, SearchScript valueScript)
           
 

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

Constructors in org.elasticsearch.search.facet.histogram.bounded with parameters of type SearchScript
BoundedValueScriptHistogramFacetCollector.HistogramProc(long from, long to, long interval, long offset, int size, SearchScript valueScript)
           
 

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

Constructors in org.elasticsearch.search.facet.histogram.unbounded with parameters of type SearchScript
ValueScriptHistogramFacetCollector.HistogramProc(long interval, SearchScript valueScript)
           
 

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

Constructors in org.elasticsearch.search.facet.terms.bytes with parameters of type SearchScript
TermsByteFacetCollector.AggregatorValueProc(gnu.trove.map.hash.TByteIntHashMap facets, Set<String> excluded, SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.terms.doubles with parameters of type SearchScript
TermsDoubleFacetCollector.AggregatorValueProc(gnu.trove.map.hash.TDoubleIntHashMap facets, Set<String> excluded, SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.terms.floats with parameters of type SearchScript
TermsFloatFacetCollector.AggregatorValueProc(gnu.trove.map.hash.TFloatIntHashMap facets, Set<String> excluded, SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.terms.ints with parameters of type SearchScript
TermsIntFacetCollector.AggregatorValueProc(gnu.trove.map.hash.TIntIntHashMap facets, Set<String> excluded, SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.terms.ip with parameters of type SearchScript
TermsIpFacetCollector.AggregatorValueProc(gnu.trove.map.hash.TLongIntHashMap facets, SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.terms.longs with parameters of type SearchScript
TermsLongFacetCollector.AggregatorValueProc(gnu.trove.map.hash.TLongIntHashMap facets, Set<String> excluded, SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.terms.shorts with parameters of type SearchScript
TermsShortFacetCollector.AggregatorValueProc(gnu.trove.map.hash.TShortIntHashMap facets, Set<String> excluded, SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.terms.strings with parameters of type SearchScript
FieldsTermsStringFacetCollector.AggregatorValueProc(gnu.trove.map.hash.TObjectIntHashMap<String> facets, com.google.common.collect.ImmutableSet<String> excluded, Pattern pattern, SearchScript script)
           
TermsStringFacetCollector.AggregatorValueProc(gnu.trove.map.hash.TObjectIntHashMap<String> facets, com.google.common.collect.ImmutableSet<String> excluded, Pattern pattern, SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.termsstats.doubles with parameters of type SearchScript
TermsStatsDoubleFacetCollector.ScriptAggregator(SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.termsstats.longs with parameters of type SearchScript
TermsStatsLongFacetCollector.ScriptAggregator(SearchScript script)
           
 

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

Constructors in org.elasticsearch.search.facet.termsstats.strings with parameters of type SearchScript
TermsStatsStringFacetCollector.ScriptAggregator(SearchScript script)
           
 

Uses of SearchScript in org.elasticsearch.search.fetch.script
 

Methods in org.elasticsearch.search.fetch.script that return SearchScript
 SearchScript ScriptFieldsContext.ScriptField.script()
           
 

Constructors in org.elasticsearch.search.fetch.script with parameters of type SearchScript
ScriptFieldsContext.ScriptField(String name, SearchScript script, boolean ignoreException)
           
 



Copyright © 2009-2012. All Rights Reserved.