public static enum FieldInfo.IndexOptions extends Enum<FieldInfo.IndexOptions>
| Enum Constant and Description | 
|---|
| DOCS_AND_FREQSOnly documents and term frequencies are indexed: positions are omitted. | 
| DOCS_AND_FREQS_AND_POSITIONSIndexes documents, frequencies and positions. | 
| DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETSIndexes documents, frequencies, positions and offsets. | 
| DOCS_ONLYOnly documents are indexed: term frequencies and positions are omitted. | 
| Modifier and Type | Method and Description | 
|---|---|
| static FieldInfo.IndexOptions | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FieldInfo.IndexOptions[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FieldInfo.IndexOptions DOCS_ONLY
public static final FieldInfo.IndexOptions DOCS_AND_FREQS
public static final FieldInfo.IndexOptions DOCS_AND_FREQS_AND_POSITIONS
public static final FieldInfo.IndexOptions DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS
public static FieldInfo.IndexOptions[] values()
for (FieldInfo.IndexOptions c : FieldInfo.IndexOptions.values()) System.out.println(c);
public static FieldInfo.IndexOptions valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2000-2014 Apache Software Foundation. All Rights Reserved.