Package org.apache.poi.hdgf.pointers
Class PointerFactory
- java.lang.Object
-
- org.apache.poi.hdgf.pointers.PointerFactory
-
public final class PointerFactory extends java.lang.Object
Factor class to create the appropriate pointers, based on the version of the file
-
-
Constructor Summary
Constructors Constructor Description PointerFactory(int version)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Pointer[]
createContainerPointers(Pointer parent, byte[] data)
Parsers thePointerContainingStream
contents and creates all the child Pointers for itPointer
createPointer(byte[] data, int offset)
Creates a single Pointer from the data at the given offsetint
getVersion()
-
-
-
Method Detail
-
getVersion
public int getVersion()
-
createPointer
public Pointer createPointer(byte[] data, int offset)
Creates a single Pointer from the data at the given offset
-
createContainerPointers
public Pointer[] createContainerPointers(Pointer parent, byte[] data)
Parsers thePointerContainingStream
contents and creates all the child Pointers for it
-
-