Interface IndexRow
-
- All Known Implementing Classes:
DefragIndexFactory.DefragIndexRowImpl,IndexPlainRowImpl,IndexRowImpl
public interface IndexRowRepresents an index row stored in a tree.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CacheDataRowcacheDataRow()booleanindexPlainRow()IndexKeykey(int idx)intkeysCount()longlink()InlineIndexRowHandlerrowHandler()
-
-
-
Method Detail
-
key
IndexKey key(int idx)
- Parameters:
idx- Index of a key.- Returns:
- Underlying key by specified index.
-
keysCount
int keysCount()
- Returns:
- Keys count.
-
link
long link()
- Returns:
- Link to a cache row.
-
rowHandler
InlineIndexRowHandler rowHandler()
- Returns:
- Schema of an index.
-
cacheDataRow
CacheDataRow cacheDataRow()
- Returns:
- Cache row.
-
indexPlainRow
boolean indexPlainRow()
- Returns:
Truefor rows used for index search (as opposed to rows stored inInlineIndexTree.
-
-