BlobIndexerPdfTextRotationAlgorithm Class
- java.
lang. Object - com.
azure. core. util. ExpandableStringEnum<T> - com.
azure. search. documents. indexes. models. BlobIndexerPdfTextRotationAlgorithm
- com.
- com.
public final class BlobIndexerPdfTextRotationAlgorithm
extends ExpandableStringEnum<BlobIndexerPdfTextRotationAlgorithm>
Determines algorithm for text extraction from PDF files in Azure blob storage.
Field Summary
Modifier and Type | Field and Description |
---|---|
static final
Blob |
DETECT_ANGLES
May produce better and more readable text extraction from PDF files that have rotated text within them. |
static final
Blob |
NONE
Leverages normal text extraction. |
Constructor Summary
Constructor | Description |
---|---|
BlobIndexerPdfTextRotationAlgorithm() |
Deprecated
Use the fromString(String name) factory method.
Creates a new instance of Blob |
Method Summary
Modifier and Type | Method and Description |
---|---|
static
Blob |
fromString(String name)
Creates or finds a Blob |
static
Collection<Blob |
values()
Gets known Blob |
Methods inherited from ExpandableStringEnum
Methods inherited from java.lang.Object
Field Details
DETECT_ANGLES
public static final BlobIndexerPdfTextRotationAlgorithm DETECT_ANGLES
May produce better and more readable text extraction from PDF files that have rotated text within them. Note that there may be a small performance speed impact when this parameter is used. This parameter only applies to PDF files, and only to PDFs with embedded text. If the rotated text appears within an embedded image in the PDF, this parameter does not apply.
NONE
public static final BlobIndexerPdfTextRotationAlgorithm NONE
Leverages normal text extraction. This is the default.
Constructor Details
BlobIndexerPdfTextRotationAlgorithm
@Deprecated
public BlobIndexerPdfTextRotationAlgorithm()
Deprecated
Creates a new instance of BlobIndexerPdfTextRotationAlgorithm value.
Method Details
fromString
public static BlobIndexerPdfTextRotationAlgorithm fromString(String name)
Creates or finds a BlobIndexerPdfTextRotationAlgorithm from its string representation.
Parameters:
Returns:
values
public static Collection
Gets known BlobIndexerPdfTextRotationAlgorithm values.
Returns:
Applies to
Azure SDK for Java