Interface AtomicFieldData
-
- All Superinterfaces:
org.apache.lucene.util.Accountable,java.lang.AutoCloseable,java.io.Closeable,Releasable
- All Known Subinterfaces:
AtomicGeoPointFieldData,AtomicNumericFieldData,AtomicOrdinalsFieldData
- All Known Implementing Classes:
AbstractAtomicGeoPointFieldData,AbstractAtomicOrdinalsFieldData,BinaryDVAtomicFieldData,PagedBytesAtomicFieldData,SortedSetDVBytesAtomicFieldData
public interface AtomicFieldData extends org.apache.lucene.util.Accountable, Releasable
The thread safeLeafReaderlevel cache of the data.
-
-
Method Summary
Modifier and Type Method Description SortedBinaryDocValuesgetBytesValues()Return a String representation of the values.default ScriptDocValues<?>getLegacyFieldValues()Returns field values for use by returned hits.ScriptDocValues<?>getScriptValues()Returns field values for use in scripting.-
Methods inherited from interface org.elasticsearch.common.lease.Releasable
close
-
-
-
-
Method Detail
-
getScriptValues
ScriptDocValues<?> getScriptValues()
Returns field values for use in scripting.
-
getLegacyFieldValues
default ScriptDocValues<?> getLegacyFieldValues()
Returns field values for use by returned hits.
-
getBytesValues
SortedBinaryDocValues getBytesValues()
Return a String representation of the values.
-
-