public abstract class FunctionValues extends Object
ValueSource
for a particular field and reader.Modifier and Type | Class and Description |
---|---|
static class |
FunctionValues.ValueFiller
Abstraction of the logic required to fill the value of a specified doc into
a reusable
MutableValue . |
Constructor and Description |
---|
FunctionValues() |
Modifier and Type | Method and Description |
---|---|
boolean |
boolVal(int doc) |
boolean |
bytesVal(int doc,
BytesRefBuilder target)
returns the bytes representation of the string val - TODO: should this return the indexed raw bytes not?
|
byte |
byteVal(int doc) |
void |
byteVal(int doc,
byte[] vals) |
double |
doubleVal(int doc) |
void |
doubleVal(int doc,
double[] vals) |
boolean |
exists(int doc)
Returns true if there is a value for this document
|
Explanation |
explain(int doc) |
float |
floatVal(int doc) |
void |
floatVal(int doc,
float[] vals) |
ValueSourceScorer |
getRangeScorer(LeafReaderContext readerContext,
String lowerVal,
String upperVal,
boolean includeLower,
boolean includeUpper)
Yields a
Scorer that matches documents with values between the specified range,
and that which produces scores equal to floatVal(int) . |
ValueSourceScorer |
getScorer(LeafReaderContext readerContext)
Yields a
Scorer that matches all documents,
and that which produces scores equal to floatVal(int) . |
FunctionValues.ValueFiller |
getValueFiller() |
int |
intVal(int doc) |
void |
intVal(int doc,
int[] vals) |
long |
longVal(int doc) |
void |
longVal(int doc,
long[] vals) |
int |
numOrd() |
Object |
objectVal(int doc)
Native Java Object representation of the value
|
int |
ordVal(int doc) |
short |
shortVal(int doc) |
void |
shortVal(int doc,
short[] vals) |
String |
strVal(int doc) |
void |
strVal(int doc,
String[] vals) |
abstract String |
toString(int doc) |
public byte byteVal(int doc)
public short shortVal(int doc)
public float floatVal(int doc)
public int intVal(int doc)
public long longVal(int doc)
public double doubleVal(int doc)
public String strVal(int doc)
public boolean boolVal(int doc)
public boolean bytesVal(int doc, BytesRefBuilder target)
public Object objectVal(int doc)
public boolean exists(int doc)
public int ordVal(int doc)
doc
- The doc to retrieve to sort ordinal forpublic int numOrd()
public abstract String toString(int doc)
public FunctionValues.ValueFiller getValueFiller()
public void byteVal(int doc, byte[] vals)
public void shortVal(int doc, short[] vals)
public void floatVal(int doc, float[] vals)
public void intVal(int doc, int[] vals)
public void longVal(int doc, long[] vals)
public void doubleVal(int doc, double[] vals)
public void strVal(int doc, String[] vals)
public Explanation explain(int doc)
public ValueSourceScorer getScorer(LeafReaderContext readerContext)
Scorer
that matches all documents,
and that which produces scores equal to floatVal(int)
.public ValueSourceScorer getRangeScorer(LeafReaderContext readerContext, String lowerVal, String upperVal, boolean includeLower, boolean includeUpper)
Scorer
that matches documents with values between the specified range,
and that which produces scores equal to floatVal(int)
.Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.