org.apache.hadoop.hbase
Class KeyValue.SplitKeyValue

java.lang.Object
  extended by org.apache.hadoop.hbase.KeyValue.SplitKeyValue
Enclosing class:
KeyValue

public static class KeyValue.SplitKeyValue
extends Object

Utility class that splits a KeyValue buffer into separate byte arrays.

Should get rid of this if we can, but is very useful for debugging.


Method Summary
 byte[] getFamily()
           
 byte[] getQualifier()
           
 byte[] getRow()
           
 byte[] getTimestamp()
           
 byte[] getType()
           
 byte[] getValue()
           
 void setFamily(byte[] value)
           
 void setQualifier(byte[] value)
           
 void setRow(byte[] value)
           
 void setTimestamp(byte[] value)
           
 void setType(byte[] value)
           
 void setValue(byte[] value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

setRow

public void setRow(byte[] value)

setFamily

public void setFamily(byte[] value)

setQualifier

public void setQualifier(byte[] value)

setTimestamp

public void setTimestamp(byte[] value)

setType

public void setType(byte[] value)

setValue

public void setValue(byte[] value)

getRow

public byte[] getRow()

getFamily

public byte[] getFamily()

getQualifier

public byte[] getQualifier()

getTimestamp

public byte[] getTimestamp()

getType

public byte[] getType()

getValue

public byte[] getValue()


Copyright © 2013 The Apache Software Foundation. All Rights Reserved.