Class StrDocValues
- java.lang.Object
-
- org.apache.lucene.queries.function.FunctionValues
-
- org.apache.lucene.queries.function.docvalues.StrDocValues
-
public abstract class StrDocValues extends FunctionValues
AbstractFunctionValues
implementation which supports retrieving String values. Implementations can control how the String values are loaded throughstrVal(int)
}
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.queries.function.FunctionValues
FunctionValues.ValueFiller
-
-
Constructor Summary
Constructors Constructor Description StrDocValues(ValueSource vs)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
boolVal(int doc)
FunctionValues.ValueFiller
getValueFiller()
java.lang.Object
objectVal(int doc)
Native Java Object representation of the valueabstract java.lang.String
strVal(int doc)
java.lang.String
toString(int doc)
-
-
-
Constructor Detail
-
StrDocValues
public StrDocValues(ValueSource vs)
-
-
Method Detail
-
strVal
public abstract java.lang.String strVal(int doc)
- Overrides:
strVal
in classFunctionValues
-
objectVal
public java.lang.Object objectVal(int doc)
Description copied from class:FunctionValues
Native Java Object representation of the value- Overrides:
objectVal
in classFunctionValues
-
boolVal
public boolean boolVal(int doc)
- Overrides:
boolVal
in classFunctionValues
-
toString
public java.lang.String toString(int doc)
- Specified by:
toString
in classFunctionValues
-
getValueFiller
public FunctionValues.ValueFiller getValueFiller()
- Overrides:
getValueFiller
in classFunctionValues
-
-