|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Error>
com.teamdev.jxdocument.Error
public enum Error
Enum of known errors.
| Enum Constant Summary | |
|---|---|
FILE_NOT_FOUND_OR_CANNOT_BE_OPENED
File not found or could not be opened |
|
PAGE_NOT_FOUND_OR_CONTENT_ERROR
Page not found or content error |
|
UNKNOWN
Unknown error. |
|
UNSUPPORTED_SECURITY_SCHEME
Unsupported security scheme |
|
WRONG_FORMAT_OR_CORRUPTED
File not in PDF format or corrupted |
|
WRONG_PASSWORD_OR_PASSWORD_REQUIRED
Password required or incorrect password |
|
| Method Summary | |
|---|---|
static Error |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Error[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Error UNKNOWN
public static final Error FILE_NOT_FOUND_OR_CANNOT_BE_OPENED
public static final Error WRONG_FORMAT_OR_CORRUPTED
public static final Error WRONG_PASSWORD_OR_PASSWORD_REQUIRED
public static final Error UNSUPPORTED_SECURITY_SCHEME
public static final Error PAGE_NOT_FOUND_OR_CONTENT_ERROR
| Method Detail |
|---|
public static Error[] values()
for (Error c : Error.values()) System.out.println(c);
public static Error 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 name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||