Java org.apache.lucene.document FieldType fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.document FieldType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.lucene.document FieldType.

The text is from its open source code.

Subclass

org.apache.lucene.document.FieldType has subclasses.
Click this link to see all its subclasses.

Field

Constructor

FieldType()
Create a new FieldType with default properties.
FieldType(IndexableFieldType ref)
Create a new mutable FieldType with all of the properties from ref

Method

booleanequals(Object obj)
voidfreeze()
Prevents future changes.
voidsetDocValuesType(DocValuesType type)
Sets the field's DocValuesType
voidsetIndexOptions(IndexOptions value)
Sets the indexing options for the field:
voidsetOmitNorms(boolean value)
Set to true to omit normalization values for the field.
voidsetStored(boolean value)
Set to true to store this field.
voidsetStoreTermVectorOffsets(boolean value)
Set to true to also store token character offsets into the term vector for this field.
voidsetStoreTermVectorPayloads(boolean value)
Set to true to also store token payloads into the term vector for this field.
voidsetStoreTermVectorPositions(boolean value)
Set to true to also store token positions into the term vector for this field.
voidsetStoreTermVectors(boolean value)
Set to true if this field's indexed form should be also stored into term vectors.
voidsetTokenized(boolean value)
Set to true to tokenize this field's contents via the configured Analyzer .
StringtoString()
Prints a Field for human consumption.