Uses of Class
org.apache.pdfbox.cos.COSObject

Packages that use COSObject
org.apache.pdfbox.cos These are the low level objects that make up a PDF document. 
org.apache.pdfbox.pdfparser The pdfparser package contains classes to parse PDF documents and objects within the document. 
org.apache.pdfbox.persistence.util These are utilities used by the persistence layer. 
 

Uses of COSObject in org.apache.pdfbox.cos
 

Methods in org.apache.pdfbox.cos that return COSObject
 COSObject COSDocument.getCatalog()
          This will get the document catalog.
 COSObject COSDocument.getObjectByType(COSName type)
          This will get the first dictionary object by type.
 COSObject COSDocument.getObjectByType(java.lang.String type)
          This will get the first dictionary object by type.
 COSObject COSDocument.getObjectFromPool(COSObjectKey key)
          This will get an object from the pool.
 COSObject COSDocument.removeObject(COSObjectKey key)
          Removes an object from the object pool.
 

Methods in org.apache.pdfbox.cos that return types with arguments of type COSObject
 java.util.List<COSObject> COSDocument.getObjects()
          This will get a list of all available objects.
 java.util.List<COSObject> COSDocument.getObjectsByType(COSName type)
          This will get a dictionary object by type.
 java.util.List<COSObject> COSDocument.getObjectsByType(java.lang.String type)
          This will get all dictionary objects by type.
 

Uses of COSObject in org.apache.pdfbox.pdfparser
 

Methods in org.apache.pdfbox.pdfparser that return types with arguments of type COSObject
 java.util.List<COSObject> PDFObjectStreamParser.getObjects()
          This will get the objects that were parsed from the stream.
 

Uses of COSObject in org.apache.pdfbox.persistence.util
 

Constructors in org.apache.pdfbox.persistence.util with parameters of type COSObject
COSObjectKey(COSObject object)
          PDFObjectKey constructor comment.