All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cloudgraph.hbase.client.HBaseRow Maven / Gradle / Ivy

Go to download

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.Row;

public abstract class HBaseRow implements Row {
  private org.apache.hadoop.hbase.client.Row row;

  @SuppressWarnings("unused")
  private HBaseRow() {
  }

  public HBaseRow(org.apache.hadoop.hbase.client.Row row) {
    super();
    this.row = row;
  }

  public org.apache.hadoop.hbase.client.Row get() {
    return row;
  }

  @Override
  public byte[] getRow() {
    return this.row.getRow();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy