Uses of Class
org.pdfbox.cos.COSStream

Packages that use COSStream
org.pdfbox.cos These are the low level objects that make up a PDF document.  
org.pdfbox.pdfparser The pdfparser package contains classes to parse PDF documents and objects within the document. 
org.pdfbox.pdfwriter This is the persistence layer used to write the PDFBox documents to a stream. 
org.pdfbox.pdmodel.common High level PD classes that are used throughout several packages are placed in the PDModel common package. 
org.pdfbox.pdmodel.common.filespecification The file specification package defines classes that are used for the PDF File Specification logic. 
org.pdfbox.pdmodel.common.function This package contains functions that are available in the PDF specification. 
org.pdfbox.pdmodel.encryption The encryption package will handle the PDF document security handlers and the functionality of pluggable security handlers. 
org.pdfbox.pdmodel.fdf The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document. 
org.pdfbox.pdmodel.font Classes to deal with font functionality in a PDF Document. 
org.pdfbox.pdmodel.graphics.color This package deals with colors that are stored in a PDF document. 
org.pdfbox.pdmodel.graphics.xobject This package deals with images that are stored in a PDF document. 
org.pdfbox.pdmodel.interactive.annotation The annotation package contains classes that work with PDF annotation elements. 
org.pdfbox.util This package contains utility classes that are used by the PDFBox project. 
 

Uses of COSStream in org.pdfbox.cos
 

Methods in org.pdfbox.cos with parameters of type COSStream
 Object ICOSVisitor.visitFromStream(COSStream obj)
          Notification of visit to stream object.
 void COSStream.replaceWithStream(COSStream stream)
          This will replace this object with the data from the new object.
 

Uses of COSStream in org.pdfbox.pdfparser
 

Methods in org.pdfbox.pdfparser that return COSStream
protected  COSStream BaseParser.parseCOSStream(COSDictionary dic, RandomAccess file)
          This will read a COSStream from the input stream.
 

Constructors in org.pdfbox.pdfparser with parameters of type COSStream
PDFStreamParser(COSStream stream)
          Constructor.
PDFObjectStreamParser(COSStream strm, COSDocument doc)
          Constructor.
 

Uses of COSStream in org.pdfbox.pdfwriter
 

Methods in org.pdfbox.pdfwriter with parameters of type COSStream
 Object COSWriter.visitFromStream(COSStream obj)
          visitFromStream method comment.
 

Uses of COSStream in org.pdfbox.pdmodel.common
 

Subclasses of COSStream in org.pdfbox.pdmodel.common
 class COSStreamArray
          This will take an array of streams and sequence them together.
 

Methods in org.pdfbox.pdmodel.common that return COSStream
 COSStream PDStream.getStream()
          Get the cos stream associated with this object.
 COSStream PDMemoryStream.getStream()
          Get the cos stream associated with this object.
 

Methods in org.pdfbox.pdmodel.common with parameters of type COSStream
 void COSStreamArray.appendStream(COSStream streamToAppend)
          Appends a new stream to the array that represents this object's stream.
 

Constructors in org.pdfbox.pdmodel.common with parameters of type COSStream
PDTextStream(COSStream str)
          Constructor.
PDStream(COSStream str)
          Constructor.
PDObjectStream(COSStream str)
          Constructor.
PDMetadata(COSStream str)
          Constructor.
 

Uses of COSStream in org.pdfbox.pdmodel.common.filespecification
 

Constructors in org.pdfbox.pdmodel.common.filespecification with parameters of type COSStream
PDEmbeddedFile(COSStream str)
          Constructor.
 

Uses of COSStream in org.pdfbox.pdmodel.common.function
 

Methods in org.pdfbox.pdmodel.common.function that return COSStream
 COSStream PDStreamFunction.getCOSStream()
          This will get the underlying array value.
 

Uses of COSStream in org.pdfbox.pdmodel.encryption
 

Methods in org.pdfbox.pdmodel.encryption with parameters of type COSStream
 void SecurityHandler.decryptStream(COSStream stream, long objNum, long genNum)
          This will decrypt a stream.
 

Uses of COSStream in org.pdfbox.pdmodel.fdf
 

Methods in org.pdfbox.pdmodel.fdf that return COSStream
 COSStream FDFDictionary.getDifferences()
          This will get the incremental updates since the PDF was last opened.
 

Methods in org.pdfbox.pdmodel.fdf with parameters of type COSStream
 void FDFDictionary.setDifferences(COSStream diff)
          This will set the differences stream.
 

Uses of COSStream in org.pdfbox.pdmodel.font
 

Methods in org.pdfbox.pdmodel.font with parameters of type COSStream
 Image Type3StreamParser.createImage(COSStream type3Stream)
          This will parse a type3 stream and create an image from it.
 

Uses of COSStream in org.pdfbox.pdmodel.graphics.color
 

Methods in org.pdfbox.pdmodel.graphics.color that return COSStream
 COSStream PDICCBased.getMetadata()
          This will get the metadata stream for this object.
 

Methods in org.pdfbox.pdmodel.graphics.color with parameters of type COSStream
 void PDICCBased.setMetadata(COSStream metadata)
          This will set the metadata stream that is associated with this color space.
 

Uses of COSStream in org.pdfbox.pdmodel.graphics.xobject
 

Methods in org.pdfbox.pdmodel.graphics.xobject that return COSStream
 COSStream PDXObject.getCOSStream()
          Returns the stream.
 

Constructors in org.pdfbox.pdmodel.graphics.xobject with parameters of type COSStream
PDXObjectForm(COSStream formStream)
          Standard constuctor.
PDXObject(COSStream xobj)
          Standard constuctor.
 

Uses of COSStream in org.pdfbox.pdmodel.interactive.annotation
 

Methods in org.pdfbox.pdmodel.interactive.annotation that return COSStream
 COSStream PDAppearanceStream.getStream()
          This will return the underlying stream.
 

Constructors in org.pdfbox.pdmodel.interactive.annotation with parameters of type COSStream
PDAppearanceStream(COSStream s)
          Constructor.
 

Uses of COSStream in org.pdfbox.util
 

Methods in org.pdfbox.util with parameters of type COSStream
protected  void PDFTextStripper.processPage(PDPage page, COSStream content)
          This will process the contents of a page.
 void PDFStreamEngine.processStream(PDPage aPage, PDResources resources, COSStream cosStream)
          This will process the contents of the stream.
 void PDFStreamEngine.processSubStream(PDPage aPage, PDResources resources, COSStream cosStream)
          Process a sub stream of the current stream.