Class IndexProjectionMode
java.lang.Object
com.azure.core.util.ExpandableStringEnum<IndexProjectionMode>
com.azure.search.documents.indexes.models.IndexProjectionMode
- All Implemented Interfaces:
com.azure.core.util.ExpandableEnum<String>
public final class IndexProjectionMode
extends com.azure.core.util.ExpandableStringEnum<IndexProjectionMode>
Defines behavior of the index projections in relation to the rest of the indexer.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final IndexProjectionModeThe source document will be written into the indexer's target index.static final IndexProjectionModeThe source document will be skipped from writing into the indexer's target index. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic IndexProjectionModefromString(String name) Creates or finds a IndexProjectionMode from its string representation.static Collection<IndexProjectionMode> values()Gets known IndexProjectionMode values.Methods inherited from class com.azure.core.util.ExpandableStringEnum
equals, fromString, getValue, hashCode, toString, values
-
Field Details
-
SKIP_INDEXING_PARENT_DOCUMENTS
The source document will be skipped from writing into the indexer's target index. -
INCLUDE_INDEXING_PARENT_DOCUMENTS
The source document will be written into the indexer's target index. This is the default pattern.
-
-
Constructor Details
-
IndexProjectionMode
Deprecated.Use thefromString(String)factory method.Creates a new instance of IndexProjectionMode value.
-
-
Method Details
-
fromString
Creates or finds a IndexProjectionMode from its string representation.- Parameters:
name- a name to look for.- Returns:
- the corresponding IndexProjectionMode.
-
values
Gets known IndexProjectionMode values.- Returns:
- known IndexProjectionMode values.
-
fromString(String)factory method.