Class IndexHistogramFieldData
java.lang.Object
org.elasticsearch.index.fielddata.IndexHistogramFieldData
- All Implemented Interfaces:
IndexFieldData<LeafHistogramFieldData>
public abstract class IndexHistogramFieldData extends java.lang.Object implements IndexFieldData<LeafHistogramFieldData>
Specialization of
IndexFieldData for histograms.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.index.fielddata.IndexFieldData
IndexFieldData.Builder, IndexFieldData.Global<FD extends LeafFieldData>, IndexFieldData.XFieldComparatorSource -
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringfieldNameprotected ValuesSourceTypevaluesSourceType -
Constructor Summary
Constructors Constructor Description IndexHistogramFieldData(java.lang.String fieldName, ValuesSourceType valuesSourceType) -
Method Summary
Modifier and Type Method Description java.lang.StringgetFieldName()The field name.ValuesSourceTypegetValuesSourceType()The ValuesSourceType of the underlying data.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.index.fielddata.IndexFieldData
load, loadDirect, newBucketedSort, sortField
-
Field Details
-
fieldName
protected final java.lang.String fieldName -
valuesSourceType
-
-
Constructor Details
-
IndexHistogramFieldData
-
-
Method Details
-
getFieldName
public final java.lang.String getFieldName()Description copied from interface:IndexFieldDataThe field name.- Specified by:
getFieldNamein interfaceIndexFieldData<LeafHistogramFieldData>
-
getValuesSourceType
Description copied from interface:IndexFieldDataThe ValuesSourceType of the underlying data. It's possible for fields that use the same IndexFieldData implementation to have different ValuesSourceTypes, such as in the case of Longs and Dates.- Specified by:
getValuesSourceTypein interfaceIndexFieldData<LeafHistogramFieldData>
-