Package oracle.kv
Class KeyValueVersion
- java.lang.Object
 - 
- oracle.kv.KeyValueVersion
 
 
- 
public class KeyValueVersion extends java.lang.ObjectRepresents a key/value pair along with its version.A KeyValueVersion instance is returned by methods such as
KVStore.storeIterator(Direction, int)andKVStore.multiGetIterator(Direction, int, Key, KeyRange, Depth). The key, version and value properties will always be non-null. 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KeygetKey()Returns the Key part of the KV pair.ValuegetValue()Returns the Value part of the KV pair.VersiongetVersion()Returns the Version of the KV pair.java.lang.StringtoString() 
 - 
 
- 
- 
Method Detail
- 
getKey
public Key getKey()
Returns the Key part of the KV pair. 
- 
getValue
public Value getValue()
Returns the Value part of the KV pair. 
- 
getVersion
public Version getVersion()
Returns the Version of the KV pair. 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
 - 
 
 -