storage.primitiveStorage
Class PrimitiveStorageManager.ChunksTable.Entry

java.lang.Object
  extended bystorage.primitiveStorage.PrimitiveStorageManager.ChunksTable.Entry
Enclosing class:
PrimitiveStorageManager.ChunksTable

public class PrimitiveStorageManager.ChunksTable.Entry
extends java.lang.Object

Represents a number-chunk pair.


Method Summary
 PrimitiveStorageManager.Chunk getChunk()
          Returns the chunk object.
 int getChunkNumber()
          Returns the chunk number.
 PrimitiveStorageManager.ChunksTable.Entry getNext()
          Returns the next number-chunk pair of the table in the insertion order.
 PrimitiveStorageManager.ChunksTable.Entry getPrevious()
          Returns the previous number-chunk pair of the table in the insertion order.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getChunkNumber

public int getChunkNumber()
Returns the chunk number.


getChunk

public PrimitiveStorageManager.Chunk getChunk()
Returns the chunk object.


getNext

public PrimitiveStorageManager.ChunksTable.Entry getNext()
Returns the next number-chunk pair of the table in the insertion order.


getPrevious

public PrimitiveStorageManager.ChunksTable.Entry getPrevious()
Returns the previous number-chunk pair of the table in the insertion order.