FileDocCategorySizeDatePackage
PointerV6.javaAPI DocApache Poi 3.0.11633Tue Jun 19 19:37:22 BST 2007org.apache.poi.hdgf.pointers

PointerV6

public class PointerV6 extends Pointer
A Pointer from v6+

Fields Summary
Constructors Summary
Methods Summary
public booleandestinationCompressed()

		// Apparently, it's the second least significant bit
		return (format & 2) > 0;
	
public booleandestinationHasChunks()

		return (0xd0 <= format && format < 0xdf);
	
public booleandestinationHasPointers()

		if(type == 20) return true;
		if(format == 0x1d || format == 0x1e) return true;
		return (0x50 <= format && format < 0x60);
	
public booleandestinationHasStrings()

		return (0x40 <= format && format < 0x50);
	
public intgetSizeInBytes()
With v6 pointers, the on-disk size is 18 bytes

 return 18;