Uses of Class
de.xima.fc.pdf.form.UnsupportedXfaFormException
-
Packages that use UnsupportedXfaFormException Package Description de.xima.fc.gui.designer.form.pdfimport de.xima.fc.pdf.form -
-
Uses of UnsupportedXfaFormException in de.xima.fc.gui.designer.form.pdfimport
Methods in de.xima.fc.gui.designer.form.pdfimport that throw UnsupportedXfaFormException Modifier and Type Method Description static PdfImportSession
PdfImportSession. forExistingFile(Path pdfData, String fileName, String password, javax.faces.context.FacesContext context)
Creates a new PDF import session for the given PDF document.static PdfImportSession
PdfImportSession. forInputStream(InputStream pdfData, String fileName, String password, javax.faces.context.FacesContext context)
Creates a new PDF import session for the given PDF document.void
PdfImportSession. loadWithPassword(String password, javax.faces.context.FacesContext context)
If the PDF documentrequired a password
, loads the document with the given password. -
Uses of UnsupportedXfaFormException in de.xima.fc.pdf.form
Methods in de.xima.fc.pdf.form that throw UnsupportedXfaFormException Modifier and Type Method Description static <T> T
PdfFormProcessor. process(byte[] pdf, String password, IPdfFormVisitor<T> visitor)
Processes a PDF document for form relevant content, and invokes the given visitor with that content.static <T> T
PdfFormProcessor. process(File pdf, String password, IPdfFormVisitor<T> visitor)
Processes a PDF document for form relevant content, and invokes the given visitor with that content.static <T> T
PdfFormProcessor. process(InputStream pdf, String password, IPdfFormVisitor<T> visitor)
Processes a PDF document for form relevant content, and invokes the given visitor with that content.static <T> T
PdfFormProcessor. process(Path pdf, String password, IPdfFormVisitor<T> visitor)
Processes a PDF document for form relevant content, and invokes the given visitor with that content.
-