Class DocTermsIndexDocValues
- java.lang.Object
-
- org.apache.lucene.queries.function.FunctionValues
-
- org.apache.lucene.queries.function.docvalues.DocTermsIndexDocValues
-
public abstract class DocTermsIndexDocValues extends FunctionValues
Serves as base class for FunctionValues based on DocTermsIndex.- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DocTermsIndexDocValues.DocTermsIndexException
Custom Exception to be thrown when the DocTermsIndex for a field cannot be generated-
Nested classes/interfaces inherited from class org.apache.lucene.queries.function.FunctionValues
FunctionValues.ValueFiller
-
-
Field Summary
Fields Modifier and Type Field Description protected CharsRefBuilder
spareChars
protected SortedDocValues
termsIndex
protected MutableValueStr
val
protected ValueSource
vs
-
Constructor Summary
Constructors Modifier Constructor Description DocTermsIndexDocValues(ValueSource vs, LeafReaderContext context, String field)
protected
DocTermsIndexDocValues(ValueSource vs, SortedDocValues termsIndex)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method 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?boolean
exists(int doc)
Returns true if there is a value for this documentprotected int
getOrdForDoc(int doc)
ValueSourceScorer
getRangeScorer(Weight weight, LeafReaderContext readerContext, String lowerVal, String upperVal, boolean includeLower, boolean includeUpper)
Yields aScorer
that matches documents with values between the specified range, and that which produces scores equal toFunctionValues.floatVal(int)
.FunctionValues.ValueFiller
getValueFiller()
int
numOrd()
abstract Object
objectVal(int doc)
Native Java Object representation of the valueint
ordVal(int doc)
String
strVal(int doc)
String
toString(int doc)
protected abstract String
toTerm(String readableValue)
-
-
-
Field Detail
-
termsIndex
protected final SortedDocValues termsIndex
-
vs
protected final ValueSource vs
-
val
protected final MutableValueStr val
-
spareChars
protected final CharsRefBuilder spareChars
-
-
Constructor Detail
-
DocTermsIndexDocValues
public DocTermsIndexDocValues(ValueSource vs, LeafReaderContext context, String field) throws IOException
- Throws:
IOException
-
DocTermsIndexDocValues
protected DocTermsIndexDocValues(ValueSource vs, SortedDocValues termsIndex)
-
-
Method Detail
-
getOrdForDoc
protected int getOrdForDoc(int doc) throws IOException
- Throws:
IOException
-
exists
public boolean exists(int doc) throws IOException
Description copied from class:FunctionValues
Returns true if there is a value for this document- Overrides:
exists
in classFunctionValues
- Throws:
IOException
-
ordVal
public int ordVal(int doc) throws IOException
- Overrides:
ordVal
in classFunctionValues
- Parameters:
doc
- The doc to retrieve to sort ordinal for- Returns:
- the sort ordinal for the specified doc TODO: Maybe we can just use intVal for this...
- Throws:
IOException
-
numOrd
public int numOrd()
- Overrides:
numOrd
in classFunctionValues
- Returns:
- the number of unique sort ordinals this instance has
-
bytesVal
public boolean bytesVal(int doc, BytesRefBuilder target) throws IOException
Description copied from class:FunctionValues
returns the bytes representation of the string val - TODO: should this return the indexed raw bytes not?- Overrides:
bytesVal
in classFunctionValues
- Throws:
IOException
-
strVal
public String strVal(int doc) throws IOException
- Overrides:
strVal
in classFunctionValues
- Throws:
IOException
-
boolVal
public boolean boolVal(int doc) throws IOException
- Overrides:
boolVal
in classFunctionValues
- Throws:
IOException
-
objectVal
public abstract Object objectVal(int doc) throws IOException
Description copied from class:FunctionValues
Native Java Object representation of the value- Overrides:
objectVal
in classFunctionValues
- Throws:
IOException
-
getRangeScorer
public ValueSourceScorer getRangeScorer(Weight weight, LeafReaderContext readerContext, String lowerVal, String upperVal, boolean includeLower, boolean includeUpper) throws IOException
Description copied from class:FunctionValues
Yields aScorer
that matches documents with values between the specified range, and that which produces scores equal toFunctionValues.floatVal(int)
.- Overrides:
getRangeScorer
in classFunctionValues
- Throws:
IOException
-
toString
public String toString(int doc) throws IOException
- Specified by:
toString
in classFunctionValues
- Throws:
IOException
-
getValueFiller
public FunctionValues.ValueFiller getValueFiller()
- Overrides:
getValueFiller
in classFunctionValues
-
-