Uses of Class
org.apache.lucene.index.FieldInfo.IndexOptions

Packages that use FieldInfo.IndexOptions
org.apache.lucene.document The logical representation of a Document for indexing and searching. 
org.apache.lucene.index Code to maintain and access indices. 
 

Uses of FieldInfo.IndexOptions in org.apache.lucene.document
 

Fields in org.apache.lucene.document declared as FieldInfo.IndexOptions
protected  FieldInfo.IndexOptions AbstractField.indexOptions
           
 

Methods in org.apache.lucene.document that return FieldInfo.IndexOptions
 FieldInfo.IndexOptions AbstractField.getIndexOptions()
           
 FieldInfo.IndexOptions Fieldable.getIndexOptions()
           
 

Methods in org.apache.lucene.document with parameters of type FieldInfo.IndexOptions
 void AbstractField.setIndexOptions(FieldInfo.IndexOptions indexOptions)
          Expert: If set, omit term freq, and optionally also positions and payloads from postings for this field.
 void Fieldable.setIndexOptions(FieldInfo.IndexOptions indexOptions)
          Expert: If set, omit term freq, and optionally positions and payloads from postings for this field.
 

Uses of FieldInfo.IndexOptions in org.apache.lucene.index
 

Fields in org.apache.lucene.index declared as FieldInfo.IndexOptions
 FieldInfo.IndexOptions FieldInfo.indexOptions
           
 

Methods in org.apache.lucene.index that return FieldInfo.IndexOptions
static FieldInfo.IndexOptions FieldInfo.IndexOptions.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FieldInfo.IndexOptions[] FieldInfo.IndexOptions.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in org.apache.lucene.index with parameters of type FieldInfo.IndexOptions
 FieldInfo FieldInfos.add(String name, boolean isIndexed, boolean storeTermVector, boolean omitNorms, boolean storePayloads, FieldInfo.IndexOptions indexOptions)
          If the field is not yet known, adds it.