ImageIndexingOptions

Inheritance: java.lang.Object

public abstract class ImageIndexingOptions

Provides image indexing options for reverse image search.

Constructors

Constructor Description
ImageIndexingOptions()

Methods

Method Description
getEnabledForSeparateImages() Gets a value indicating whether to index separate image files.
setEnabledForSeparateImages(boolean value) Sets a value indicating whether to index separate image files.
getEnabledForContainerItemImages() Gets a value indicating whether to index images that are items in a container (for example, images in a ZIP archive).
setEnabledForContainerItemImages(boolean value) Sets a value indicating whether to index images that are items in a container (for example, images in a ZIP archive).
getEnabledForEmbeddedImages() Gets a value indicating whether to index embedded images (for example, images in a DOCX document).
setEnabledForEmbeddedImages(boolean value) Sets a value indicating whether to index embedded images (for example, images in a DOCX document).

ImageIndexingOptions()

public ImageIndexingOptions()

getEnabledForSeparateImages()

public abstract boolean getEnabledForSeparateImages()

Gets a value indicating whether to index separate image files. The default value is false .

Returns: boolean - A value indicating whether to index separate image files.

setEnabledForSeparateImages(boolean value)

public abstract void setEnabledForSeparateImages(boolean value)

Sets a value indicating whether to index separate image files. The default value is false .

Parameters:

Parameter Type Description
value boolean A value indicating whether to index separate image files.

getEnabledForContainerItemImages()

public abstract boolean getEnabledForContainerItemImages()

Gets a value indicating whether to index images that are items in a container (for example, images in a ZIP archive). The default value is false .

Returns: boolean - A value indicating whether to index images that are items in a container.

setEnabledForContainerItemImages(boolean value)

public abstract void setEnabledForContainerItemImages(boolean value)

Sets a value indicating whether to index images that are items in a container (for example, images in a ZIP archive). The default value is false .

Parameters:

Parameter Type Description
value boolean A value indicating whether to index images that are items in a container.

getEnabledForEmbeddedImages()

public abstract boolean getEnabledForEmbeddedImages()

Gets a value indicating whether to index embedded images (for example, images in a DOCX document). The default value is false .

Returns: boolean - A value indicating whether to index embedded images.

setEnabledForEmbeddedImages(boolean value)

public abstract void setEnabledForEmbeddedImages(boolean value)

Sets a value indicating whether to index embedded images (for example, images in a DOCX document). The default value is false .

Parameters:

Parameter Type Description
value boolean A value indicating whether to index embedded images.