Class HBaseCell
- java.lang.Object
-
- org.apache.camel.component.hbase.model.HBaseCell
-
public class HBaseCell extends Object
A simplified representation of HBase KeyValue objects, which uses the actual Objects instead of byte arrays. It is used in order to abstract the conversion strategy from CellMappingStrategy. It is also used as a template to specify which will be the columns returned in gets, scans etc.
-
-
Constructor Summary
Constructors Constructor Description HBaseCell()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetFamily()StringgetQualifier()LonggetTimestamp()ObjectgetValue()Class<?>getValueType()inthashCode()voidsetFamily(String family)voidsetQualifier(String qualifier)voidsetTimestamp(Long timestamp)voidsetValue(Object value)voidsetValueType(Class<?> valueType)StringtoString()
-
-
-
Method Detail
-
getFamily
public String getFamily()
-
setFamily
public void setFamily(String family)
-
getQualifier
public String getQualifier()
-
setQualifier
public void setQualifier(String qualifier)
-
getValue
public Object getValue()
-
setValue
public void setValue(Object value)
-
getValueType
public Class<?> getValueType()
-
setValueType
public void setValueType(Class<?> valueType)
-
getTimestamp
public Long getTimestamp()
-
setTimestamp
public void setTimestamp(Long timestamp)
-
-