Java org.apache.lucene.index IndexOptions fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.index IndexOptions fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Field

IndexOptionsNONE
Not indexed
IndexOptionsDOCS
Only documents are indexed: term frequencies and positions are omitted.
IndexOptionsDOCS_AND_FREQS
Only documents and term frequencies are indexed: positions are omitted.
IndexOptionsDOCS_AND_FREQS_AND_POSITIONS
Indexes documents, frequencies and positions.
IndexOptionsDOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS
Indexes documents, frequencies, positions and offsets.

Constructor