Enum ExceptionType
- All Implemented Interfaces:
Serializable
,Comparable<ExceptionType>
,java.lang.constant.Constable
The type of a
PDFreactorException
. Can be used to identify a specific
exception without using instanceof
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates aBadEventException
.Indicates aPDFreactorPDFConformanceException
.Indicates anEmptyPDFException
.Indicates anEnvironmentException
.Indicates anIncompatibleOutputFormatException
.Indicates anInternalException
.Indicates anInvalidConfigurationException
.Indicates anInvalidResourceException
.Indicates aJavaVersionException
.Indicates aLicenseException
.Indicates aMissingDependencyException
.Indicates aMissingResourceException
.Indicates anOutputException
.Indicates aPageOrderException
.Indicates aPdfMergeException
.Indicates aPdfSignException
.Indicates aTerminationException
.Indicates aTimeoutException
.Indicates aUserAgentException
. -
Method Summary
Modifier and TypeMethodDescriptionstatic ExceptionType
Returns the enum constant of this type with the specified name.static ExceptionType[]
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, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
EMPTY_PDF
Indicates anEmptyPDFException
. -
INTERNAL
Indicates anInternalException
. -
LICENSE
Indicates aLicenseException
. -
MISSING_DEPENDENCY
Indicates aMissingDependencyException
. -
MISSING_RESOURCE
Indicates aMissingResourceException
. -
INVALID_RESOURCE
Indicates anInvalidResourceException
. -
OUTPUT
Indicates anOutputException
. -
PAGE_ORDER
Indicates aPageOrderException
. -
PDF_MERGE
Indicates aPdfMergeException
. -
CONFORMANCE
Indicates aPDFreactorPDFConformanceException
. -
PDF_SIGN
Indicates aPdfSignException
. -
TERMINATION
Indicates aTerminationException
. -
TIMEOUT
Indicates aTimeoutException
. -
USER_AGENT
Indicates aUserAgentException
. -
INCOMPATIBLE_OUTPUT_FORMAT
Indicates anIncompatibleOutputFormatException
. -
ENVIRONMENT
Indicates anEnvironmentException
. -
JAVA_VERSION
Indicates aJavaVersionException
. -
INVALID_CONFIGURATION
Indicates anInvalidConfigurationException
. -
BAD_EVENT
Indicates aBadEventException
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-