Pointerpublic 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 |
Methods Summary |
---|
public abstract boolean | destinationCompressed()
| public abstract boolean | destinationHasChunks()
| public abstract boolean | destinationHasPointers()
| public abstract boolean | destinationHasStrings()
| public int | getAddress()
return address;
| public short | getFormat()
return format;
| public int | getLength()
return length;
| public int | getOffset()
return offset;
| public abstract int | getSizeInBytes()
| public int | getType()
return type;
|
|