Uses of Class
org.apache.lucene.index.FieldInfo.DocValuesType
-
Packages that use FieldInfo.DocValuesType Package Description org.apache.lucene.document The logical representation of aDocumentfor indexing and searching.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of FieldInfo.DocValuesType in org.apache.lucene.document
Methods in org.apache.lucene.document that return FieldInfo.DocValuesType Modifier and Type Method Description FieldInfo.DocValuesTypeFieldType. docValueType()DocValuesFieldInfo.DocValuesType: if non-null then the field's value will be indexed into docValues.Methods in org.apache.lucene.document with parameters of type FieldInfo.DocValuesType Modifier and Type Method Description voidFieldType. setDocValueType(FieldInfo.DocValuesType type)Set's the field's DocValuesType -
Uses of FieldInfo.DocValuesType in org.apache.lucene.index
Methods in org.apache.lucene.index that return FieldInfo.DocValuesType Modifier and Type Method Description FieldInfo.DocValuesTypeIndexableFieldType. docValueType()DocValuesFieldInfo.DocValuesType: if non-null then the field's value will be indexed into docValues.FieldInfo.DocValuesTypeFieldInfo. getDocValuesType()ReturnsFieldInfo.DocValuesTypeof the docValues.FieldInfo.DocValuesTypeFieldInfo. getNormType()ReturnsFieldInfo.DocValuesTypeof the norm.static FieldInfo.DocValuesTypeFieldInfo.DocValuesType. valueOf(String name)Returns the enum constant of this type with the specified name.static FieldInfo.DocValuesType[]FieldInfo.DocValuesType. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.lucene.index with parameters of type FieldInfo.DocValuesType Constructor Description FieldInfo(String name, boolean indexed, int number, boolean storeTermVector, boolean omitNorms, boolean storePayloads, FieldInfo.IndexOptions indexOptions, FieldInfo.DocValuesType docValues, FieldInfo.DocValuesType normsType, Map<String,String> attributes)Sole Constructor.
-