PDFRenderingErrorHandling Enumeration
In This Topic
Specifies how the errors during page rendering should be handled.
Members
Member | Description |
IGNORE_ALL_ERRORS | PDF errors are ignored and the page is rendered till the first PDF error is encountered. |
IGNORE_ALL_ERRORS_AND_CONTINUE | PDF errors are ignored and the page is rendered, skipping the encountered PDF errors. |
IGNORE_PAGE_CONTENT_ERRORS | Page content errors are ignored and the page is rendered till the first invalid token is encountered. |
IGNORE_PAGE_CONTENT_ERRORS_AND_CONTINUE | Page content errors are ignored and the page is rendered, skipping the found invalid tokens. |
THROW_EXCEPTION | An exception is thrown if the page content has errors. |
THROW_EXCEPTION_FOR_ANY_ERRORS | An exception is thrown if there are any PDF errors. |
Inheritance Hierarchy
java.lang.Object
java.lang.Enum
com.o2sol.pdf4java.render.PDFRenderingErrorHandling
See Also