Interface LeafFieldData
- All Superinterfaces:
org.apache.lucene.util.Accountable,java.lang.AutoCloseable,java.io.Closeable,Releasable
- All Known Subinterfaces:
LeafGeoPointFieldData,LeafHistogramFieldData,LeafNumericFieldData,LeafOrdinalsFieldData
- All Known Implementing Classes:
AbstractLeafGeoPointFieldData,AbstractLeafOrdinalsFieldData,BinaryDVLeafFieldData,LeafDoubleFieldData,LeafLongFieldData,PagedBytesLeafFieldData,SortedNumericIndexFieldData.NanoSecondFieldData,SortedSetBytesLeafFieldData
public interface LeafFieldData extends org.apache.lucene.util.Accountable, Releasable
The thread safe
LeafReader level cache of the data.-
Field Summary
-
Method Summary
Modifier and Type Method Description SortedBinaryDocValuesgetBytesValues()Return a String representation of the values.default DocValueFetcher.LeafgetLeafValueFetcher(DocValueFormat format)Return a value fetcher for this leaf implementation.ScriptDocValues<?>getScriptValues()Returns field values for use in scripting.
-
Method Details
-
getScriptValues
ScriptDocValues<?> getScriptValues()Returns field values for use in scripting. -
getBytesValues
SortedBinaryDocValues getBytesValues()Return a String representation of the values. -
getLeafValueFetcher
Return a value fetcher for this leaf implementation.
-