Enum Configuration.OutputType
- All Implemented Interfaces:
Serializable
,Comparable<Configuration.OutputType>
,java.lang.constant.Constable
- Enclosing class:
Configuration
An enum containing output format constants.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBMP output format.GIF output format.JPEG output format, with dithering applied.JPEG output format.PDF output format.PNG output format.Deprecated.Transparent PNG output format.Deprecated.Monochrome CCITT 1D/RLE compressed TIFF output format.Monochrome CCITT 1D/RLE compressed TIFF output format, with dithering applied.Monochrome CCITT Group 3/T.4 compressed TIFF output format.Monochrome CCITT Group 3/T.4 compressed TIFF output format, with dithering applied.Monochrome CCITT Group 4/T.6 compressed TIFF output format.Monochrome CCITT Group 4/T.6 compressed TIFF output format, with dithering applied.LZW compressed TIFF output format.PackBits compressed TIFF output format.Uncompressed TIFF output format. -
Method Summary
Modifier and TypeMethodDescriptionstatic Configuration.OutputType
Returns the enum constant of this type with the specified name.static Configuration.OutputType[]
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
-
BMP
BMP output format.
-
GIF
GIF output format.
-
JPEG
JPEG output format.
-
PDF
PDF output format.
-
PNG
PNG output format.
-
PNG_AI
Deprecated.Deprecated as of PDFreactor 11. Use
PNG
instead. -
PNG_TRANSPARENT
Transparent PNG output format.
-
PNG_TRANSPARENT_AI
Deprecated.Deprecated as of PDFreactor 11. Use
PNG_TRANSPARENT
instead. -
TIFF_CCITT_1D
Monochrome CCITT 1D/RLE compressed TIFF output format.
-
TIFF_CCITT_GROUP_3
Monochrome CCITT Group 3/T.4 compressed TIFF output format.
-
TIFF_CCITT_GROUP_4
Monochrome CCITT Group 4/T.6 compressed TIFF output format.
-
TIFF_LZW
LZW compressed TIFF output format.
-
TIFF_PACKBITS
PackBits compressed TIFF output format.
-
TIFF_UNCOMPRESSED
Uncompressed TIFF output format.
-
TIFF_CCITT_1D_DITHERED
Monochrome CCITT 1D/RLE compressed TIFF output format, with dithering applied.
-
TIFF_CCITT_GROUP_3_DITHERED
Monochrome CCITT Group 3/T.4 compressed TIFF output format, with dithering applied.
-
TIFF_CCITT_GROUP_4_DITHERED
Monochrome CCITT Group 4/T.6 compressed TIFF output format, with dithering applied.
-
GIF_DITHERED
JPEG output format, with dithering applied.
-
-
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
-