SplitMode Class
- java.
lang. Object - com.
azure. core. util. ExpandableStringEnum<T> - com.
azure. ai. documentintelligence. models. SplitMode
- com.
- com.
public final class SplitMode
extends ExpandableStringEnum<SplitMode>
Document splitting mode.
Field Summary
Modifier and Type | Field and Description |
---|---|
static final
Split |
AUTO
Automatically split file into documents. |
static final
Split |
NONE
Treat the entire file as a single document. |
static final
Split |
PER_PAGE
Treat each page in the file as a separate document. |
Constructor Summary
Constructor | Description |
---|---|
SplitMode() |
Deprecated
Use the fromString(String name) factory method.
Creates a new instance of Split |
Method Summary
Modifier and Type | Method and Description |
---|---|
static
Split |
fromString(String name)
Creates or finds a Split |
static
Collection<Split |
values()
Gets known Split |
Methods inherited from ExpandableStringEnum
Methods inherited from java.lang.Object
Field Details
AUTO
public static final SplitMode AUTO
Automatically split file into documents.
NONE
public static final SplitMode NONE
Treat the entire file as a single document.
PER_PAGE
public static final SplitMode PER_PAGE
Treat each page in the file as a separate document.
Constructor Details
SplitMode
@Deprecated
public SplitMode()
Deprecated
Creates a new instance of SplitMode value.
Method Details
fromString
public static SplitMode fromString(String name)
Creates or finds a SplitMode from its string representation.
Parameters:
Returns:
values
public static Collection
Gets known SplitMode values.
Returns:
Applies to
Azure SDK for Java