Uses of Class
com.bigdata.io.ByteArrayBuffer

Packages that use ByteArrayBuffer
com.bigdata.btree The BTree is a scalable B+-Tree with copy-on-write semantics mapping variable length unsigned byte[] keys to variable length byte[] values (null values are allowed). 
com.bigdata.htree   
com.bigdata.io   
com.bigdata.io.compression   
com.bigdata.rdf.model This package provides a tuned implementation of the Sesame RDF data model for the RDF database. 
 

Uses of ByteArrayBuffer in com.bigdata.btree
 

Methods in com.bigdata.btree that return ByteArrayBuffer
 ByteArrayBuffer AbstractTuple.getKeyBuffer()
           
 ByteArrayBuffer AbstractChunkedTupleIterator.ResultSetTuple.getKeyBuffer()
           
 ByteArrayBuffer DelegateTuple.getKeyBuffer()
           
 ByteArrayBuffer ITuple.getKeyBuffer()
          The buffer into which the keys are being copied.
 ByteArrayBuffer AbstractTuple.getValueBuffer()
           
 ByteArrayBuffer AbstractChunkedTupleIterator.ResultSetTuple.getValueBuffer()
           
 ByteArrayBuffer DelegateTuple.getValueBuffer()
           
 ByteArrayBuffer ITuple.getValueBuffer()
          The buffer into which the values are being copied.
 

Methods in com.bigdata.btree with parameters of type ByteArrayBuffer
static byte[] AbstractBTree.encodeRecordAddr(ByteArrayBuffer recordAddrBuf, long addr)
          Encode a raw record address into a byte[] suitable for storing in the value associated with a tuple and decoding using AbstractBTree.decodeRecordAddr(byte[])
 

Uses of ByteArrayBuffer in com.bigdata.htree
 

Methods in com.bigdata.htree with parameters of type ByteArrayBuffer
static byte[] AbstractHTree.encodeRecordAddr(ByteArrayBuffer recordAddrBuf, long addr)
          Encode a raw record address into a byte[] suitable for storing in the value associated with a tuple and decoding using AbstractHTree.decodeRecordAddr(byte[])
 

Uses of ByteArrayBuffer in com.bigdata.io
 

Subclasses of ByteArrayBuffer in com.bigdata.io
 class DataOutputBuffer
          Fast special purpose serialization onto a managed byte[] buffer conforming to the DataOutput API.
 

Methods in com.bigdata.io that return ByteArrayBuffer
 ByteArrayBuffer ByteArrayBuffer.append(byte b)
           
 ByteArrayBuffer ByteArrayBuffer.append(byte[] b)
           
 ByteArrayBuffer ByteArrayBuffer.append(byte[] b, int off, int len)
           
 ByteArrayBuffer ByteArrayBuffer.reset()
          Prepares the buffer for new data by resetting the position and limit to zero.
 

Methods in com.bigdata.io with parameters of type ByteArrayBuffer
 int ByteArrayBuffer.copyAll(ByteArrayBuffer src)
          Relative copy data from the origin (offset ZERO) of the source buffer up to its read limit into this buffer.
 int ByteArrayBuffer.copyRest(ByteArrayBuffer src)
          Relative copy data from the current position of the source buffer up to its read limit into this buffer.
 void DataInputBuffer.setBuffer(ByteArrayBuffer buf)
          Replaces the buffer reference with array() and resets the offset and length to the pos() and the limit() respectively.
 

Constructors in com.bigdata.io with parameters of type ByteArrayBuffer
DataInputBuffer(ByteArrayBuffer buf)
          Prepare for reading from the buffer.
 

Uses of ByteArrayBuffer in com.bigdata.io.compression
 

Methods in com.bigdata.io.compression with parameters of type ByteArrayBuffer
 int UnicodeHelper.encode(String s, OutputStream out, ByteArrayBuffer tmp)
          Encode the String onto the OutputStream.
 

Uses of ByteArrayBuffer in com.bigdata.rdf.model
 

Methods in com.bigdata.rdf.model with parameters of type ByteArrayBuffer
 byte[] BigdataValueSerializer.serialize(V val, DataOutputBuffer out, ByteArrayBuffer tmp)
          Variant which permits reuse of the same buffer.
 void BigdataValueSerializer.serialize2(V val, DataOutputBuffer out, ByteArrayBuffer tmp)
          Variant which permits reuse of the same buffer and avoids copying the data once it has been formated onto the caller's DataOutputBuffer (core impl).
 



Copyright © 2006-2011 SYSTAP, LLC. All Rights Reserved.