public static final enum

SDFDoc.SaveMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pdftron.sdf.SDFDoc.SaveMode

Summary

Enum Values
SDFDoc.SaveMode  COMPATIBILITY  Saves the document in a manner that maximizes compatibility with older PDF consumers (e.g. 
SDFDoc.SaveMode  HEX_STRINGS  Save all string in hexadecimal format. 
SDFDoc.SaveMode  INCREMENTAL  Save the document using incremental mode. 
SDFDoc.SaveMode  LINEARIZED  Save the document in linearized (fast web-view) format. 
SDFDoc.SaveMode  NO_FLAGS  Save the document without using any special flags. 
SDFDoc.SaveMode  OMIT_XREF  Do not save cross-reference table  
SDFDoc.SaveMode  REMOVE_UNUSED  Remove unused objects. 
Public Methods
int getValue()
static SDFDoc.SaveMode valueOf(String name)
final static SaveMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final SDFDoc.SaveMode COMPATIBILITY

Saves the document in a manner that maximizes compatibility with older PDF consumers (e.g. the file will not use object and compressed xref streams).

public static final SDFDoc.SaveMode HEX_STRINGS

Save all string in hexadecimal format.

public static final SDFDoc.SaveMode INCREMENTAL

Save the document using incremental mode.

public static final SDFDoc.SaveMode LINEARIZED

Save the document in linearized (fast web-view) format. Requires full save.

public static final SDFDoc.SaveMode NO_FLAGS

Save the document without using any special flags.

public static final SDFDoc.SaveMode OMIT_XREF

Do not save cross-reference table

public static final SDFDoc.SaveMode REMOVE_UNUSED

Remove unused objects. Requires full save.

Public Methods

public int getValue ()

public static SDFDoc.SaveMode valueOf (String name)

public static final SaveMode[] values ()