Class IndexingMode
java.lang.Object
com.azure.core.util.ExpandableStringEnum<IndexingMode>
com.azure.search.documents.indexes.models.IndexingMode
- All Implemented Interfaces:
com.azure.core.util.ExpandableEnum<String>
Represents the mode the indexer is executing in.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final IndexingModeThe indexer is indexing all documents in the datasource.static final IndexingModeThe indexer is indexing selective, reset documents in the datasource. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic IndexingModefromString(String name) Creates or finds a IndexingMode from its string representation.static Collection<IndexingMode> values()Gets known IndexingMode values.Methods inherited from class com.azure.core.util.ExpandableStringEnum
equals, fromString, getValue, hashCode, toString, values
-
Field Details
-
INDEXING_ALL_DOCS
The indexer is indexing all documents in the datasource. -
INDEXING_RESET_DOCS
The indexer is indexing selective, reset documents in the datasource. The documents being indexed are defined on indexer status.
-
-
Constructor Details
-
IndexingMode
Deprecated.Use thefromString(String)factory method.Creates a new instance of IndexingMode value.
-
-
Method Details
-
fromString
Creates or finds a IndexingMode from its string representation.- Parameters:
name- a name to look for.- Returns:
- the corresponding IndexingMode.
-
values
Gets known IndexingMode values.- Returns:
- known IndexingMode values.
-
fromString(String)factory method.