Package org.elasticsearch.script
Class StringSortScript
- java.lang.Object
-
- org.elasticsearch.script.StringSortScript
-
- All Implemented Interfaces:
ScorerAware
public abstract class StringSortScript extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceStringSortScript.FactoryA factory to construct statefulStringSortScriptfactories for a specific index.static interfaceStringSortScript.LeafFactoryA factory to constructStringSortScriptinstances.
-
Field Summary
Fields Modifier and Type Field Description static ScriptContext<StringSortScript.Factory>CONTEXTstatic java.lang.String[]PARAMETERS
-
Constructor Summary
Constructors Constructor Description StringSortScript(java.util.Map<java.lang.String,java.lang.Object> params, SearchLookup lookup, org.apache.lucene.index.LeafReaderContext leafContext)
-
Method Summary
Modifier and Type Method Description abstract java.lang.Stringexecute()doubleget_score()Return the score of the current document.java.util.Map<java.lang.String,ScriptDocValues<?>>getDoc()The doc lookup for the Lucene segment this script was created for.java.util.Map<java.lang.String,java.lang.Object>getParams()Return the parameters for this script.voidsetDocument(int docid)Set the current document to run the script on next.voidsetScorer(org.apache.lucene.search.Scorable scorer)
-
-
-
Field Detail
-
PARAMETERS
public static final java.lang.String[] PARAMETERS
-
CONTEXT
public static final ScriptContext<StringSortScript.Factory> CONTEXT
-
-
Constructor Detail
-
StringSortScript
public StringSortScript(java.util.Map<java.lang.String,java.lang.Object> params, SearchLookup lookup, org.apache.lucene.index.LeafReaderContext leafContext)
-
-
Method Detail
-
execute
public abstract java.lang.String execute()
-
getParams
public java.util.Map<java.lang.String,java.lang.Object> getParams()
Return the parameters for this script.
-
setScorer
public void setScorer(org.apache.lucene.search.Scorable scorer)
- Specified by:
setScorerin interfaceScorerAware
-
get_score
public double get_score()
Return the score of the current document.
-
getDoc
public java.util.Map<java.lang.String,ScriptDocValues<?>> getDoc()
The doc lookup for the Lucene segment this script was created for.
-
setDocument
public void setDocument(int docid)
Set the current document to run the script on next.
-
-