putByte(tail + _tailHeaderSize + klength, ANTIVALUE_TYPE);
}
long getPointer(final int foundAt) throws PersistitException {
if (!isIndexPage()) {
throw new InvalidPageTypeException("type=" + _type);
}
final int kbData = getInt(foundAt & P_MASK);
final int tail = decodeKeyBlockTail(kbData);
return getInt(tail + 4);
}