public enum FTIndex extends Enum<FTIndex> implements INumberEnum<Short>
Set
.AUTOOPTIONS
will ignore all other indexing
options and therefore should not be OR-ed with any of the other
indexing options.Enum Constant and Description |
---|
AUTOOPTIONS
Use the index options that are in database.
|
CASE_SENSITIVE
Build case sensitive index
|
ENCRYPTED_FIELDS
Index Encrypted Fields
|
INDEX_ATTACHED_FILES
Index Attachments
|
INDEX_SENTENCE_PARAGRAPH_BREAKS
Build index with word, sentence, and paragraph index break option which allows a search for
words within a sentence or paragraph.
|
OPTIMIZE
Optimize index (e.g.
|
REINDEX
Forces re-indexing the database from scratch.
|
STEM_INDEX
Build an index that includes word variants (stems).
|
SUMMARY_ONLY
Index summary data only
|
USE_CONVERSION_FILTERS_FOR_FILES
Index all attachments including BINARY formats
|
Modifier and Type | Method and Description |
---|---|
long |
getLongValue() |
Short |
getValue() |
static FTIndex |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FTIndex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTIndex REINDEX
public static final FTIndex CASE_SENSITIVE
public static final FTIndex STEM_INDEX
public static final FTIndex INDEX_SENTENCE_PARAGRAPH_BREAKS
public static final FTIndex OPTIMIZE
public static final FTIndex INDEX_ATTACHED_FILES
public static final FTIndex ENCRYPTED_FIELDS
public static final FTIndex AUTOOPTIONS
AUTOOPTIONS
is used.public static final FTIndex SUMMARY_ONLY
public static final FTIndex USE_CONVERSION_FILTERS_FOR_FILES
public static FTIndex[] values()
for (FTIndex c : FTIndex.values()) System.out.println(c);
public static FTIndex 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 nullpublic Short getValue()
getValue
in interface INumberEnum<Short>
public long getLongValue()
getLongValue
in interface INumberEnum<Short>
long
Copyright © 2019–2021 HCL. All rights reserved.