Package io.scanbot.sdk.persistence.page
Enum PageStorage.ImageType
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum PageStorage.ImageType extends Enum<PageStorage.ImageType>
Types of images to be saved on disk for each page.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ORIGINAL_IMAGE
ORIGINAL_IMAGE_PREVIEW
DOCUMENT_IMAGE
DOCUMENT_IMAGE_PREVIEW
UNFILTERED_DOCUMENT_IMAGE
UNFILTERED_DOCUMENT_IMAGE_PREVIEW
FILTERED_PREVIEW
-
Method Summary
Modifier and Type Method Description final PageStorage.ImageType
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<PageStorage.ImageType>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final String
getFileName()
File name to be saved on disk for this image type. -
-
Method Detail
-
valueOf
final PageStorage.ImageType valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<PageStorage.ImageType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getFileName
final String getFileName()
File name to be saved on disk for this image type.
-
-
-
-