Class PersistentMap.ValueInfo
- java.lang.Object
- 
- jadex.binary.persistent.collections.PersistentMap.ValueInfo
 
- 
- Enclosing class:
- PersistentMap<K,V>
 
 protected class PersistentMap.ValueInfo extends java.lang.ObjectInformation about a stored value.
- 
- 
Field SummaryFields Modifier and Type Field Description protected longkvpositionPosition of the whole key-value pair.protected intkvsizeSize of the whole key-value pair.protected longpositionPosition of the value within the file.protected intsizeSize of the value in the file.
 - 
Constructor SummaryConstructors Constructor Description ValueInfo(long pos, int size, long kvpos, int kvsize)Creates the info.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetKvPosition()Gets the kvposition.intgetKvSize()Gets the kvsize.longgetPosition()Gets the position.intgetSize()Gets the size.
 
- 
- 
- 
Method Detail- 
getPositionpublic long getPosition() Gets the position.- Returns:
- The position.
 
 - 
getSizepublic int getSize() Gets the size.- Returns:
- The size.
 
 - 
getKvPositionpublic long getKvPosition() Gets the kvposition.- Returns:
- The kvposition.
 
 - 
getKvSizepublic int getKvSize() Gets the kvsize.- Returns:
- The kvsize.
 
 
- 
 
-