public enum InputType extends Enum<InputType>
| Enum Constant and Description |
|---|
Base64
base64 string with the image or path to the .txt file with the base64 content.
|
Directory
Path to the directory.
|
PDF
Scanned PDF document from file or from InputStream.
|
SingleImage
Supports GIF, PNG, JPEG, BMP, TIFF, JFIF, InputStream, BufferedImage.
|
TIFF
Multipage TIFF, TIF document from file or from InputStream.
|
URL
Link on the image.
|
Zip
Full name of the ZIP archive.
|
| Modifier and Type | Method and Description |
|---|---|
static InputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputType SingleImage
public static final InputType PDF
public static final InputType TIFF
public static final InputType URL
public static final InputType Directory
public static final InputType Zip
public static final InputType Base64
public static InputType[] values()
for (InputType c : InputType.values()) System.out.println(c);
public static InputType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 Aspose. All rights reserved.