Uses of Class
org.apache.lucene.index.FieldInfo.IndexOptions
-
Packages that use FieldInfo.IndexOptions Package Description org.apache.lucene.document The logical representation of aDocument
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 Modifier and Type Field Description protected FieldInfo.IndexOptions
AbstractField. indexOptions
Methods in org.apache.lucene.document that return FieldInfo.IndexOptions Modifier and Type Method Description FieldInfo.IndexOptions
AbstractField. getIndexOptions()
FieldInfo.IndexOptions
Fieldable. getIndexOptions()
Methods in org.apache.lucene.document with parameters of type FieldInfo.IndexOptions Modifier and Type Method Description 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 Modifier and Type Field Description FieldInfo.IndexOptions
FieldInfo. indexOptions
Methods in org.apache.lucene.index that return FieldInfo.IndexOptions Modifier and Type Method Description 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 are declared.Methods in org.apache.lucene.index with parameters of type FieldInfo.IndexOptions Modifier and Type Method Description 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.
-