Package com.datalogics.PDFL
Enum Class SaveFlags
- All Implemented Interfaces:
Serializable,Comparable<SaveFlags>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEncode any uncompressed stream witht the Flate filter.Deprecated.Close document after save.Collect Garbage by removing unreferenced objects.Use object compression only for Logical Structure items.Use object compression wherever possible.Saves a copy of the document.Don't create /ToUnicode and /Widths entries for Fonts to improve performance.Deprecated.Save the entire document.Incremental save only write objects that have changed after the end of the document rather than disturbing unchanged items.Do not update the Modification DateSave in a format that is suitable for remote (network) access, Linearized is sometimes referred to as Web Optimized because of its goal of minimizing the perception of poor performance due to the number of pages in a document.Optimize Content Streams operators where possible.Merge Font Descriptors and encoding where possible.Delete symbols specific to JBIG2 Dictionaries that couldn't be removed previously.Merge identical XObjects.Remove the ASCII85 filter from all streams where its in use.Replace any LZW encoded stream with Flate.Save the document as Linearized the same as Linearized but OptimizeFonts is disabled.Save original /Metadata stream of input as /Metadata stream of output document.Do not use object stream compression.Save XMP data as read-only without padding -
Method Summary
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INCREMENTAL
Incremental save only write objects that have changed after the end of the document rather than disturbing unchanged items. Use with Copy to create a new file which incorporates a copy of the input file before making changes. This flag can be useful when making changes to signed documents, as it preserves the validity of any existing signatures. -
FULL
Save the entire document. -
COPY
Saves a copy of the document. Used with Incremental to create a new file from a binary copy of the input document. -
LINEARIZED
Save in a format that is suitable for remote (network) access, Linearized is sometimes referred to as Web Optimized because of its goal of minimizing the perception of poor performance due to the number of pages in a document. This inherently uses OptimizeFonts, for documents with a large number of fonts, font optimization can have poor performance, see SaveLinearizedNoOptimizeFonts as an alternative. -
COLLECT_GARBAGE
Collect Garbage by removing unreferenced objects. Only valid with Full. -
KEEP_MOD_DATE
Do not update the Modification Date -
CLOSE_AFTER_SAVE
Close document after save. Use this flag for saving to the stream only. Note that using this flag to save a document to any destination other than stream causes an exception. -
XMPPACKET_READ_ONLY_NO_PADDING
Save XMP data as read-only without padding -
UNCOMPRESSED
Do not use object stream compression. Only valid with Full. -
COMPRESSED
Use object compression wherever possible. Only valid with Full. -
COMPRESS_STRUCTURE_ONLY
Use object compression only for Logical Structure items. Only valid with Full. -
REMOVE_ASCIIFILTERS
Remove the ASCII85 filter from all streams where its in use. Only valid with Full. -
ADD_FLATE
Encode any uncompressed stream witht the Flate filter. Only valid with Full. -
REPLACE_LZW
Replace any LZW encoded stream with Flate. Only valid with Full. -
OPTIMIZE_XOBJECTS
Merge identical XObjects. -
OPTIMIZE_CONTENT_STREAMS
Optimize Content Streams operators where possible. -
OPTIMIZE_FONTS
Merge Font Descriptors and encoding where possible. For documents with a large number of fonts, font optimization can have poor performance, this should only be set if necessary. -
OPTIMIZE_MARKED_JBIG_2DICTIONARIES
Delete symbols specific to JBIG2 Dictionaries that couldn't be removed previously. -
ENSURE_7BIT_ASCII
Deprecated. -
AUTO_SAVE
Deprecated. -
DO_NOT_CREATE_TO_UNICODE_WIDTHS
Don't create /ToUnicode and /Widths entries for Fonts to improve performance. -
SAVE_ORIGINAL_METADATA
Save original /Metadata stream of input as /Metadata stream of output document. -
SAVE_LINEARIZED_NO_OPTIMIZE_FONTS
Save the document as Linearized the same as Linearized but OptimizeFonts is disabled. For documents with a large number of fonts, font optimization can have poor performance and is often unnecessary.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-