Package oracle.kv
Class ValueVersion
- java.lang.Object
 - 
- oracle.kv.ValueVersion
 
 
- 
- Direct Known Subclasses:
 ReturnValueVersion
public class ValueVersion extends Object
 
- 
- 
Constructor Summary
Constructors Constructor Description ValueVersion()Used internally to create an object with null value and version.ValueVersion(Value value, Version version)Used internally to create an object with a value and version. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ValuegetValue()Returns the Value part of the KV pair.VersiongetVersion()Returns the Version of the KV pair.ValueVersionsetValue(Value value)Used internally to initialize the Value part of the KV pair.ValueVersionsetVersion(Version version)Used internally to initialize the Version of the KV pair.StringtoString() 
 - 
 
- 
- 
Method Detail
- 
getValue
public Value getValue()
Returns the Value part of the KV pair. 
- 
getVersion
public Version getVersion()
Returns the Version of the KV pair. 
- 
setValue
public ValueVersion setValue(Value value)
Used internally to initialize the Value part of the KV pair. 
- 
setVersion
public ValueVersion setVersion(Version version)
Used internally to initialize the Version of the KV pair. 
 - 
 
 -