COSWriter
public interface ICOSVisitor
Modifier and Type | Method | Description |
---|---|---|
java.lang.Object |
visitFromArray(COSArray obj) |
Notification of visit to Array object.
|
java.lang.Object |
visitFromBoolean(COSBoolean obj) |
Notification of visit to boolean object.
|
java.lang.Object |
visitFromDictionary(COSDictionary obj) |
Notification of visit to dictionary object.
|
java.lang.Object |
visitFromDocument(COSDocument obj) |
Notification of visit to document object.
|
java.lang.Object |
visitFromFloat(COSFloat obj) |
Notification of visit to float object.
|
java.lang.Object |
visitFromInt(COSInteger obj) |
Notification of visit to integer object.
|
java.lang.Object |
visitFromName(COSName obj) |
Notification of visit to name object.
|
java.lang.Object |
visitFromNull(COSNull obj) |
Notification of visit to null object.
|
java.lang.Object |
visitFromStream(COSStream obj) |
Notification of visit to stream object.
|
java.lang.Object |
visitFromString(COSString obj) |
Notification of visit to string object.
|
java.lang.Object visitFromArray(COSArray obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.java.lang.Object visitFromBoolean(COSBoolean obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.java.lang.Object visitFromDictionary(COSDictionary obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.java.lang.Object visitFromDocument(COSDocument obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.java.lang.Object visitFromFloat(COSFloat obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.java.lang.Object visitFromInt(COSInteger obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.java.lang.Object visitFromName(COSName obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.java.lang.Object visitFromNull(COSNull obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.java.lang.Object visitFromStream(COSStream obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.java.lang.Object visitFromString(COSString obj) throws COSVisitorException
obj
- The Object that is being visited.COSVisitorException
- If there is an error while visiting this object.