Compartir a través de


BlobIndexerDataToExtract Class

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 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).

static final BlobIndexerDataToExtract CONTENT_AND_METADATA

Extracts all metadata and textual content from each blob.

static final BlobIndexerDataToExtract 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 BlobIndexerDataToExtract value.

Method Summary

Modifier and Type Method and Description
static BlobIndexerDataToExtract fromString(String name)

Creates or finds a BlobIndexerDataToExtract from its string representation.

static Collection<BlobIndexerDataToExtract> values()

Gets known BlobIndexerDataToExtract values.

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

Use the fromString(String name) factory method.

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:

name - a name to look for.

Returns:

the corresponding BlobIndexerDataToExtract.

values

public static Collection values()

Gets known BlobIndexerDataToExtract values.

Returns:

known BlobIndexerDataToExtract values.

Applies to