IndexType
Contents
[
Hide
]
Inheritance: java.lang.Object, java.lang.Enum
public enum IndexType extends Enum<IndexType>
Specifies an index type.
Learn more
Fields
Field | Description |
---|---|
NormalIndex | Normal index with documents metadata and documents content which supports all search features. |
MetadataIndex | Index that contains only metadata of documents, without content. |
CompactIndex | Index type that takes much less disk space but does not support phrase search and date range search features. |
Methods
Method | Description |
---|---|
values() | |
valueOf(String name) |
NormalIndex
public static final IndexType NormalIndex
Normal index with documents metadata and documents content which supports all search features.
MetadataIndex
public static final IndexType MetadataIndex
Index that contains only metadata of documents, without content.
CompactIndex
public static final IndexType CompactIndex
Index type that takes much less disk space but does not support phrase search and date range search features.
values()
public static IndexType[] values()
Returns: com.groupdocs.search.options.IndexType[]
valueOf(String name)
public static IndexType valueOf(String name)
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String |
Returns: IndexType