| org.pdfbox.cos.ICOSVisitor
All known Subclasses: org.pdfbox.pdfwriter.COSWriter,
ICOSVisitor | public interface ICOSVisitor (Code) | | An interface for visiting a PDF document at the type (COS) level.
author: Michael Traut version: $Revision: 1.6 $ |
visitFromArray | public Object visitFromArray(COSArray obj) throws COSVisitorException(Code) | | Notification of visit to Array object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
visitFromBoolean | public Object visitFromBoolean(COSBoolean obj) throws COSVisitorException(Code) | | Notification of visit to boolean object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
visitFromDictionary | public Object visitFromDictionary(COSDictionary obj) throws COSVisitorException(Code) | | Notification of visit to dictionary object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
visitFromDocument | public Object visitFromDocument(COSDocument obj) throws COSVisitorException(Code) | | Notification of visit to document object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
visitFromFloat | public Object visitFromFloat(COSFloat obj) throws COSVisitorException(Code) | | Notification of visit to float object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
visitFromInt | public Object visitFromInt(COSInteger obj) throws COSVisitorException(Code) | | Notification of visit to integer object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
visitFromName | public Object visitFromName(COSName obj) throws COSVisitorException(Code) | | Notification of visit to name object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
visitFromNull | public Object visitFromNull(COSNull obj) throws COSVisitorException(Code) | | Notification of visit to null object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
visitFromStream | public Object visitFromStream(COSStream obj) throws COSVisitorException(Code) | | Notification of visit to stream object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
visitFromString | public Object visitFromString(COSString obj) throws COSVisitorException(Code) | | Notification of visit to string object.
Parameters: obj - The Object that is being visited. any Object depending on the visitor implementation, or null throws: COSVisitorException - If there is an error while visiting this object. |
|
|