コード例 #1
0
ファイル: SingleByteBuff.java プロジェクト: hadoopwork/hbase
 @Override
 public long getLong(int index) {
   return ByteBufferUtils.toLong(this.buf, index);
 }
コード例 #2
0
ファイル: SingleByteBuff.java プロジェクト: hadoopwork/hbase
 @Override
 public long getLongAfterPosition(int offset) {
   return ByteBufferUtils.toLong(this.buf, this.buf.position() + offset);
 }
コード例 #3
0
 @Override
 public long getTimestamp() {
   return ByteBufferUtils.toLong(this.buf, getTimestampOffset());
 }