BlobIndexerDataToExtract Class
- java.
lang. Object - com.
azure. core. util. ExpandableStringEnum<T> - com.
azure. search. documents. indexes. models. BlobIndexerDataToExtract
- com.
- com.
public final class BlobIndexerDataToExtract
extends ExpandableStringEnum<BlobIndexerDataToExtract>
Specifies the data to extract from Azure blob storage and tells the indexer which data to extract from image content when "imageAction" is set to a value other than "none". This applies to embedded image content in a .PDF or other application, or image files such as .jpg and .png, in Azure blobs.
Field Summary
Modifier and Type | Field and Description |
---|---|
static final
Blob |
ALL_METADATA
Extracts metadata provided by the Azure blob storage subsystem and the content-type specific metadata (for example, metadata unique to just .png files are indexed). |
static final
Blob |
CONTENT_AND_METADATA
Extracts all metadata and textual content from each blob. |
static final
Blob |
STORAGE_METADATA
Indexes just the standard blob properties and user-specified metadata. |
Constructor Summary
Constructor | Description |
---|---|
BlobIndexerDataToExtract() |
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
ALL_METADATA
public static final BlobIndexerDataToExtract ALL_METADATA
Extracts metadata provided by the Azure blob storage subsystem and the content-type specific metadata (for example, metadata unique to just .png files are indexed).
CONTENT_AND_METADATA
public static final BlobIndexerDataToExtract CONTENT_AND_METADATA
Extracts all metadata and textual content from each blob.
STORAGE_METADATA
public static final BlobIndexerDataToExtract STORAGE_METADATA
Indexes just the standard blob properties and user-specified metadata.
Constructor Details
BlobIndexerDataToExtract
@Deprecated
public BlobIndexerDataToExtract()
Deprecated
Creates a new instance of BlobIndexerDataToExtract value.
Method Details
fromString
public static BlobIndexerDataToExtract fromString(String name)
Creates or finds a BlobIndexerDataToExtract from its string representation.
Parameters:
Returns:
values
public static Collection
Gets known BlobIndexerDataToExtract values.
Returns:
Applies to
Azure SDK for Java