Package org.elasticsearch.script
Class ScoreAccessor
- java.lang.Object
-
- java.lang.Number
-
- org.elasticsearch.script.ScoreAccessor
-
- All Implemented Interfaces:
java.io.Serializable
public final class ScoreAccessor extends java.lang.NumberA float encapsulation that dynamically accesses the score of a document. The providedDocLookupis used to retrieve the score for the current document.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ScoreAccessor(org.apache.lucene.search.Scorer scorer)
-
Method Summary
Modifier and Type Method Description doubledoubleValue()floatfloatValue()intintValue()longlongValue()
-
-
-
Method Detail
-
intValue
public int intValue()
- Specified by:
intValuein classjava.lang.Number
-
longValue
public long longValue()
- Specified by:
longValuein classjava.lang.Number
-
floatValue
public float floatValue()
- Specified by:
floatValuein classjava.lang.Number
-
doubleValue
public double doubleValue()
- Specified by:
doubleValuein classjava.lang.Number
-
-