Uses of Class
org.pdfbox.pdmodel.common.PDStream

Packages that use PDStream
org.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents. 
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.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.ttf This package contains classes to parse a TTF file. 
 

Uses of PDStream in org.pdfbox.pdmodel
 

Methods in org.pdfbox.pdmodel that return PDStream
 PDStream PDPage.getContents()
          This will get the contents of the PDF Page, in the case that the contents of the page is an array then then the entire array of streams will be be wrapped and appear as a single stream.
 

Methods in org.pdfbox.pdmodel with parameters of type PDStream
 void PDPage.setContents(PDStream contents)
          This will set the contents of this page.
 

Uses of PDStream in org.pdfbox.pdmodel.common
 

Subclasses of PDStream in org.pdfbox.pdmodel.common
 class PDMemoryStream
          A PDStream represents a stream in a PDF document.
 class PDMetadata
          This class represents metadata for various objects in a PDF document.
 class PDObjectStream
          A PDStream represents a stream in a PDF document.
 

Methods in org.pdfbox.pdmodel.common that return PDStream
static PDStream PDStream.createFromCOS(COSBase base)
          Create a pd stream from either a regular COSStream on a COSArray of cos streams.
 

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

Subclasses of PDStream in org.pdfbox.pdmodel.common.filespecification
 class PDEmbeddedFile
          This represents an embedded file in a file specification.
 

Uses of PDStream in org.pdfbox.pdmodel.font
 

Methods in org.pdfbox.pdmodel.font that return PDStream
 PDStream PDFontDescriptorDictionary.getFontFile()
          A stream containing a Type 1 font program.
 PDStream PDFontDescriptorDictionary.getFontFile2()
          A stream containing a true type font program.
 PDStream PDFontDescriptorDictionary.getFontFile3()
          A stream containing a font program that is not true type or type 1.
 PDStream PDSimpleFont.getToUnicode()
          This will get the ToUnicode stream.
 

Methods in org.pdfbox.pdmodel.font with parameters of type PDStream
 void PDFontDescriptorDictionary.setFontFile(PDStream type1Stream)
          Set the type 1 font program.
 void PDFontDescriptorDictionary.setFontFile2(PDStream ttfStream)
          Set the true type font program.
 void PDFontDescriptorDictionary.setFontFile3(PDStream stream)
          Set a stream containing a font program that is not true type or type 1.
 void PDSimpleFont.setToUnicode(PDStream unicode)
          This will set the ToUnicode stream.
 

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

Methods in org.pdfbox.pdmodel.graphics.color that return PDStream
 PDStream PDICCBased.getPDStream()
          Get the pd stream for this icc color space.
 

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

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

Constructors in org.pdfbox.pdmodel.graphics.xobject with parameters of type PDStream
PDXObjectForm(PDStream formStream)
          Standard constuctor.
PDPixelMap(PDStream pdStream)
          Standard constructor.
PDJpeg(PDStream jpeg)
          Standard constructor.
PDCcitt(PDStream ccitt)
          Standard constructor.
PDXObject(PDStream xobj)
          Standard constuctor.
PDXObjectImage(PDStream imageStream, String fileSuffix)
          Standard constuctor.
 

Uses of PDStream in org.pdfbox.ttf
 

Methods in org.pdfbox.ttf that return PDStream
 PDStream RAFDataStream.getPDStream()
          Get a COSStream from this TTFDataStream This permit to pass the data read from an external source to the COSObjects to keep a certain persistence layer between specialized objects like the TTF package and the pdmodel package.
 PDStream MemoryTTFDataStream.getPDStream()
          Get a COSStream from this TTFDataStream This permit to pass the data read from an external source to the COSObjects to keep a certain persistence layer between specialized objects like the TTF package and the pdmodel package.
abstract  PDStream TTFDataStream.getPDStream()
          Get a COSStream from this TTFDataStream This permit to pass the data read from an external source to the COSObjects to keep a certain persistence layer between specialized objects like the TTF package and the pdmodel package.
 PDStream TrueTypeFont.getPDStream()
          This permit to get the COSStream of the True Type Font program representing the stream used to build this object (normally from the TTFParser object).