Enum Constant and Description |
---|
CANCEL
Conversion process was canceled.
|
COMPRESS_ERROR
Folder compression failed.
|
CONVERTING
Currently executing conversion task.
|
FILE_ERROR
File cannot be found or could not be opened.
|
IO_ERROR
System I/O error.
|
LICENSE_EXPIRED
The license has expired.
|
LICENSE_FILE_READ_FAILED
Failed to read license file.
|
LICENSE_ILLEGAL_ACCESS
Illegal access to the API interface.
|
LICENSE_INVALID
The license is invalid.
|
LICENSE_OCR_PERMISSION_DENY
The license does not have OCR permissions.
|
LICENSE_PERMISSION_DENY
The license does not have the function permission.
|
LICENSE_UNINITIALIZED
License has not been initialized.
|
LICENSE_UNSUPPORTED_DEVICE
The license does not support the device id.
|
LICENSE_UNSUPPORTED_ID
The license does not support the application id.
|
LICENSE_UNSUPPORTED_PLATFORM
The license does not support the current platform.
|
NO_TABLE
No tables found in the source file.
|
OCR_FAILURE
Failed to call OCR recognition.
|
OUT_OF_MEMORY_ERROR
Out-of-memory error occurs.
|
PDF_FORMAT_ERROR
Format is invalid.
|
PDF_PAGE_ERROR
PDF page failed to load.
|
PDF_PASSWORD_ERROR
Invalid password.
|
PDF_SECURITY_ERROR
PDF document is encrypted by some unsupported security handler.
|
SUCCESS
Success, and no error occurs.
|
UNKNOWN
Unknown error.
|
Modifier and Type | Method and Description |
---|---|
static ErrorCode |
fromInt(int value) |
int |
getValue() |
static ErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCode SUCCESS
public static final ErrorCode CANCEL
public static final ErrorCode FILE_ERROR
public static final ErrorCode PDF_PASSWORD_ERROR
public static final ErrorCode PDF_PAGE_ERROR
public static final ErrorCode PDF_FORMAT_ERROR
public static final ErrorCode PDF_SECURITY_ERROR
public static final ErrorCode OUT_OF_MEMORY_ERROR
public static final ErrorCode IO_ERROR
public static final ErrorCode COMPRESS_ERROR
public static final ErrorCode LICENSE_INVALID
public static final ErrorCode LICENSE_EXPIRED
public static final ErrorCode LICENSE_UNSUPPORTED_PLATFORM
public static final ErrorCode LICENSE_UNSUPPORTED_ID
public static final ErrorCode LICENSE_UNSUPPORTED_DEVICE
public static final ErrorCode LICENSE_PERMISSION_DENY
public static final ErrorCode LICENSE_UNINITIALIZED
public static final ErrorCode LICENSE_ILLEGAL_ACCESS
public static final ErrorCode LICENSE_FILE_READ_FAILED
public static final ErrorCode LICENSE_OCR_PERMISSION_DENY
public static final ErrorCode NO_TABLE
public static final ErrorCode OCR_FAILURE
public static final ErrorCode CONVERTING
public static final ErrorCode UNKNOWN
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
public static ErrorCode fromInt(int value)