com.teamdev.jxdocument
Enum Error

java.lang.Object
  extended by java.lang.Enum<Error>
      extended by com.teamdev.jxdocument.Error
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Error>

public enum Error
extends java.lang.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

UNKNOWN

public static final Error UNKNOWN
Unknown error.


FILE_NOT_FOUND_OR_CANNOT_BE_OPENED

public static final Error FILE_NOT_FOUND_OR_CANNOT_BE_OPENED
File not found or could not be opened


WRONG_FORMAT_OR_CORRUPTED

public static final Error WRONG_FORMAT_OR_CORRUPTED
File not in PDF format or corrupted


WRONG_PASSWORD_OR_PASSWORD_REQUIRED

public static final Error WRONG_PASSWORD_OR_PASSWORD_REQUIRED
Password required or incorrect password


UNSUPPORTED_SECURITY_SCHEME

public static final Error UNSUPPORTED_SECURITY_SCHEME
Unsupported security scheme


PAGE_NOT_FOUND_OR_CONTENT_ERROR

public static final Error PAGE_NOT_FOUND_OR_CONTENT_ERROR
Page not found or content error

Method Detail

values

public static Error[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Error c : Error.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Error valueOf(java.lang.String name)
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.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null