ImageIndexingOptions
Leave feedback
On this page
Inheritance: java.lang.Object
public abstract class ImageIndexingOptions
Provides image indexing options for reverse image search.
| Constructor | Description |
|---|---|
| ImageIndexingOptions() |
| 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). |
public ImageIndexingOptions()
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.
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. |
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.
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. |
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.
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. |
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.