Uses of Class
org.apache.pdfbox.exceptions.COSVisitorException

Packages that use COSVisitorException
org.apache.pdfbox This package holds executable classes that interact with the PDFBox application. 
org.apache.pdfbox.cos These are the low level objects that make up a PDF document. 
org.apache.pdfbox.pdfwriter This is the persistence layer used to write the PDFBox documents to a stream. 
org.apache.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents. 
org.apache.pdfbox.pdmodel.common High level PD classes that are used throughout several packages are placed in the PDModel common package. 
org.apache.pdfbox.pdmodel.fdf The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document. 
org.apache.pdfbox.util This package contains utility classes that are used by the PDFBox project. 
 

Uses of COSVisitorException in org.apache.pdfbox
 

Methods in org.apache.pdfbox that throw COSVisitorException
 void WriteDecodedDoc.doIt(String in, String out)
          Deprecated. use WriteDecodedDoc#doIt(String, String, String) instead.
 void WriteDecodedDoc.doIt(String in, String out, String password, boolean useNonSeqParser)
          This will perform the document reading, decoding and writing.
static void Overlay.main(String[] args)
          This will overlay a document and write out the results.
 

Uses of COSVisitorException in org.apache.pdfbox.cos
 

Methods in org.apache.pdfbox.cos that throw COSVisitorException
abstract  Object COSBase.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSObject.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSArray.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSName.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSString.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSUnread.accept(ICOSVisitor visitor)
           
 Object COSStream.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSBoolean.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSInteger.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSDictionary.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSFloat.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSNull.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object COSDocument.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 Object ICOSVisitor.visitFromArray(COSArray obj)
          Notification of visit to Array object.
 Object ICOSVisitor.visitFromBoolean(COSBoolean obj)
          Notification of visit to boolean object.
 Object ICOSVisitor.visitFromDictionary(COSDictionary obj)
          Notification of visit to dictionary object.
 Object ICOSVisitor.visitFromDocument(COSDocument obj)
          Notification of visit to document object.
 Object ICOSVisitor.visitFromFloat(COSFloat obj)
          Notification of visit to float object.
 Object ICOSVisitor.visitFromInt(COSInteger obj)
          Notification of visit to integer object.
 Object ICOSVisitor.visitFromName(COSName obj)
          Notification of visit to name object.
 Object ICOSVisitor.visitFromNull(COSNull obj)
          Notification of visit to null object.
 Object ICOSVisitor.visitFromStream(COSStream obj)
          Notification of visit to stream object.
 Object ICOSVisitor.visitFromString(COSString obj)
          Notification of visit to string object.
 

Uses of COSVisitorException in org.apache.pdfbox.pdfwriter
 

Methods in org.apache.pdfbox.pdfwriter that throw COSVisitorException
protected  void COSWriter.doWriteBody(COSDocument doc)
          This will write the body of the document.
 void COSWriter.doWriteObject(COSBase obj)
          This will write a COS object.
protected  void COSWriter.doWriteTrailer(COSDocument doc)
          This will write the trailer to the PDF document.
 Object COSWriter.visitFromArray(COSArray obj)
          visitFromArray method comment.
 Object COSWriter.visitFromBoolean(COSBoolean obj)
          visitFromBoolean method comment.
 Object COSWriter.visitFromDictionary(COSDictionary obj)
          visitFromDictionary method comment.
 Object COSWriter.visitFromDocument(COSDocument doc)
          The visit from document method.
 Object COSWriter.visitFromFloat(COSFloat obj)
          visitFromFloat method comment.
 Object COSWriter.visitFromInt(COSInteger obj)
          visitFromFloat method comment.
 Object COSWriter.visitFromName(COSName obj)
          visitFromName method comment.
 Object COSWriter.visitFromNull(COSNull obj)
          visitFromNull method comment.
 Object COSWriter.visitFromStream(COSStream obj)
          visitFromStream method comment.
 Object COSWriter.visitFromString(COSString obj)
          visitFromString method comment.
 void COSWriter.write(COSDocument doc)
          This will write the pdf document.
 void COSWriter.write(PDDocument doc)
          This will write the pdf document.
 void COSWriter.writeReference(COSBase obj)
          visitFromObjRef method comment.
 

Uses of COSVisitorException in org.apache.pdfbox.pdmodel
 

Methods in org.apache.pdfbox.pdmodel that throw COSVisitorException
 void PDDocument.save(OutputStream output)
          This will save the document to an output stream.
 void PDDocument.save(String fileName)
          This will save this document to the filesystem.
 void PDDocument.saveIncremental(FileInputStream input, OutputStream output)
           
 void PDDocument.saveIncremental(String fileName)
           
 

Uses of COSVisitorException in org.apache.pdfbox.pdmodel.common
 

Methods in org.apache.pdfbox.pdmodel.common that throw COSVisitorException
 Object COSStreamArray.accept(ICOSVisitor visitor)
          visitor pattern double dispatch method.
 

Uses of COSVisitorException in org.apache.pdfbox.pdmodel.fdf
 

Methods in org.apache.pdfbox.pdmodel.fdf that throw COSVisitorException
 void FDFDocument.save(File fileName)
          This will save this document to the filesystem.
 void FDFDocument.save(OutputStream output)
          This will save the document to an output stream.
 void FDFDocument.save(String fileName)
          This will save this document to the filesystem.
 void FDFDocument.saveXFDF(File fileName)
          This will save this document to the filesystem.
 void FDFDocument.saveXFDF(String fileName)
          This will save this document to the filesystem.
 void FDFDocument.saveXFDF(Writer output)
          This will save the document to an output stream and close the stream.
 

Uses of COSVisitorException in org.apache.pdfbox.util
 

Methods in org.apache.pdfbox.util that throw COSVisitorException
 void PDFMergerUtility.mergeDocuments()
          Merge the list of source documents, saving the result in the destination file.