| java.lang.Object org.apache.poi.hdgf.streams.Stream
All known Subclasses: org.apache.poi.hdgf.streams.UnknownStream, org.apache.poi.hdgf.streams.ChunkStream, org.apache.poi.hdgf.streams.StringsStream, org.apache.poi.hdgf.streams.PointerContainingStream,
Stream | abstract public class Stream (Code) | | Base of all Streams within a HDGF document.
Streams are what hold the data (the metadata of a stream
is held in the pointer that points to the stream).
A stream may be stored compressed or un-compressed on the
disk, but that doesn't appear to change their use.
|
Stream | protected Stream(Pointer pointer, StreamStore store)(Code) | | Creates a new Stream, having already used the pointer
to build a store
|
_getContentsLength | public int _getContentsLength()(Code) | | |
createStream | public static Stream createStream(Pointer pointer, byte[] documentData, ChunkFactory chunkFactory, PointerFactory pointerFactory)(Code) | | Uses the pointer to locate a Stream within the document
data, and creates it.
Parameters: pointer - The Pointer to create a stream for Parameters: documentData - The raw document data |
|
|