FileDocCategorySizeDatePackage
Pointer.javaAPI DocApache Poi 3.0.11704Mon Jun 18 19:38:48 BST 2007org.apache.poi.hdgf.pointers

Pointer

public abstract class Pointer extends Object
Base class of pointers, which hold metadata and offsets about blocks elsewhere in the file

Fields Summary
protected int
type
protected int
address
protected int
offset
protected int
length
protected short
format
Constructors Summary
Methods Summary
public abstract booleandestinationCompressed()

public abstract booleandestinationHasChunks()

public abstract booleandestinationHasPointers()

public abstract booleandestinationHasStrings()

public intgetAddress()

		return address;
	
public shortgetFormat()

		return format;
	
public intgetLength()

		return length;
	
public intgetOffset()

		return offset;
	
public abstract intgetSizeInBytes()

public intgetType()

		return type;