![JAR search and dependency download from the Maven repository](/logo.png)
org.cloudgraph.hbase.client.HBaseKeyValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudgraph-hbase Show documentation
Show all versions of cloudgraph-hbase Show documentation
CloudGraph(tm) is a suite of Service Data Object (SDO) 2.1 services designed for relational and big-table style "cloud" databases, such as HBase and others.
The newest version!
package org.cloudgraph.hbase.client;
import org.cloudgraph.core.client.KeyValue;
public class HBaseKeyValue implements KeyValue {
private org.apache.hadoop.hbase.KeyValue kv;
@SuppressWarnings("unused")
private HBaseKeyValue() {
}
public HBaseKeyValue(org.apache.hadoop.hbase.KeyValue kv) {
super();
this.kv = kv;
}
public org.apache.hadoop.hbase.KeyValue get() {
return this.kv;
}
@Override
public byte[] getRow() {
return this.kv.getRow();
}
@Override
public byte[] getFamily() {
return this.kv.getFamily();
}
@Override
public byte[] getQualifier() {
return this.kv.getQualifier();
}
@Override
public long getTimestamp() {
return this.kv.getTimestamp();
}
@Override
public byte[] getValue() {
return this.kv.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy