ImageSearchResult

Inheritance: java.lang.Object

public abstract class ImageSearchResult

Represents the result of a reverse image search.

Constructors

Constructor Description
ImageSearchResult()

Methods

Method Description
getImageCount() Gets the number of images found.
getFoundImage(int index) Gets the found image by index.

ImageSearchResult()

public ImageSearchResult()

getImageCount()

public abstract int getImageCount()

Gets the number of images found.

Returns: int - The number of images found.

getFoundImage(int index)

public abstract FoundImageFrame getFoundImage(int index)

Gets the found image by index.

Parameters:

Parameter Type Description
index int The index of a found image.

Returns: FoundImageFrame - The found image.