public enum IndexOptions extends Enum<IndexOptions>
Enum Constant and Description |
---|
DOCS
Only documents are indexed: term frequencies and positions are omitted.
|
DOCS_AND_FREQS
Only documents and term frequencies are indexed: positions are omitted.
|
DOCS_AND_FREQS_AND_POSITIONS
Indexes documents, frequencies and positions.
|
DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS
Indexes documents, frequencies, positions and offsets.
|
NONE
Not indexed
|
Modifier and Type | Method and Description |
---|---|
static IndexOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexOptions NONE
public static final IndexOptions DOCS
public static final IndexOptions DOCS_AND_FREQS
public static final IndexOptions DOCS_AND_FREQS_AND_POSITIONS
public static final IndexOptions DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS
public static IndexOptions[] values()
for (IndexOptions c : IndexOptions.values()) System.out.println(c);
public static 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-2017 Apache Software Foundation. All Rights Reserved.