Enum ConvertError
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum ConvertError extends Enum<ConvertError>
Error code for converting.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERR_NONE
None.
ERR_SUCCESS
Success.
ERR_UNKNOWN
Unknown error in processing conversion.
ERR_ENCRYPTED
Password required or incorrect password.
ERR_INTERRUPT
Conversion process interrupted.
ERR_PERMISSION
The license doesn't allow the permission.
ERR_ALLOC
Malloc failure.
ERR_NDK
NDK error.
ERR_CONVERTING
A file is already being converted, so other files could not be converted at the same time.
ERR_PDFERROR
Unknown error in processing PDF.
ERR_FILE
File not found or could not be opened.
ERR_FORMAT
File not in PDF format or corrupted.
ERR_SECURITY
Unsupported security scheme.
ERR_PAGE
Page not found or content error.
-
Method Summary
Modifier and Type Method Description final ConvertError
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<ConvertError>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final ConvertError 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<ConvertError> 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.
-
-
-
-