Uses of Class
com.bigdata.io.AbstractFixedByteArrayBuffer

Packages that use AbstractFixedByteArrayBuffer
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.btree.data   
com.bigdata.btree.raba   
com.bigdata.btree.raba.codec   
com.bigdata.htree   
com.bigdata.htree.data   
com.bigdata.io   
com.bigdata.rdf.spo This package defines a statement model using long term identifiers rather than RDF Value objects. 
 

Uses of AbstractFixedByteArrayBuffer in com.bigdata.btree
 

Methods in com.bigdata.btree that return AbstractFixedByteArrayBuffer
 AbstractFixedByteArrayBuffer Leaf.data()
           
 AbstractFixedByteArrayBuffer MutableNodeData.data()
           
 AbstractFixedByteArrayBuffer IndexSegmentBuilder.AbstractSimpleNodeData.data()
           
 AbstractFixedByteArrayBuffer Node.data()
           
 AbstractFixedByteArrayBuffer MutableLeafData.data()
           
 AbstractFixedByteArrayBuffer ResultSet.data()
          FIXME If we extend DefaultLeafCoder or implement "ResultSetCoder" then we can really adhere to these semantics.
 AbstractFixedByteArrayBuffer NodeSerializer.encode(IAbstractNodeData node)
          Deprecated. This method is no longer used since I refactored the IndexSegmentBuilder to optionally stuff the generated nodes and leaves into the cache. It still works but it might go away in the future.
 

Uses of AbstractFixedByteArrayBuffer in com.bigdata.btree.data
 

Methods in com.bigdata.btree.data that return AbstractFixedByteArrayBuffer
 AbstractFixedByteArrayBuffer IAbstractNodeData.data()
          The coded (aka compressed) data.
 AbstractFixedByteArrayBuffer DefaultLeafCoder.encode(ILeafData leaf, DataOutputBuffer buf)
           
 AbstractFixedByteArrayBuffer DefaultNodeCoder.encode(INodeData node, DataOutputBuffer buf)
           
 AbstractFixedByteArrayBuffer IAbstractNodeDataCoder.encode(T node, DataOutputBuffer buf)
          Encode the data, returning a slice containing the coded data.
 

Methods in com.bigdata.btree.data with parameters of type AbstractFixedByteArrayBuffer
 T IAbstractNodeDataCoder.decode(AbstractFixedByteArrayBuffer data)
          Return an IAbstractNodeData instance which can access the coded data.
 ILeafData DefaultLeafCoder.decode(AbstractFixedByteArrayBuffer data)
           
 INodeData DefaultNodeCoder.decode(AbstractFixedByteArrayBuffer data)
           
 

Uses of AbstractFixedByteArrayBuffer in com.bigdata.btree.raba
 

Methods in com.bigdata.btree.raba that return AbstractFixedByteArrayBuffer
 AbstractFixedByteArrayBuffer ConditionalRabaCoder.encode(IRaba raba, DataOutputBuffer buf)
           
 

Methods in com.bigdata.btree.raba with parameters of type AbstractFixedByteArrayBuffer
 ICodedRaba ConditionalRabaCoder.decode(AbstractFixedByteArrayBuffer data)
           
 

Uses of AbstractFixedByteArrayBuffer in com.bigdata.btree.raba.codec
 

Methods in com.bigdata.btree.raba.codec that return AbstractFixedByteArrayBuffer
 AbstractFixedByteArrayBuffer ICodedRaba.data()
          The coded (aka compressed) data.
 AbstractFixedByteArrayBuffer CanonicalHuffmanRabaCoder.CodedRabaImpl.data()
           
 AbstractFixedByteArrayBuffer EmptyRabaValueCoder.encode(IRaba raba, DataOutputBuffer buf)
          Any data in the IRaba will be discarded! Only the IRaba.size() is maintained.
 AbstractFixedByteArrayBuffer FixedLengthValueRabaCoder.encode(IRaba raba, DataOutputBuffer buf)
           
 AbstractFixedByteArrayBuffer CanonicalHuffmanRabaCoder.encode(IRaba raba, DataOutputBuffer buf)
           
 AbstractFixedByteArrayBuffer IRabaCoder.encode(IRaba raba, DataOutputBuffer buf)
          Encode the data.
 AbstractFixedByteArrayBuffer FrontCodedRabaCoder.encode(IRaba raba, DataOutputBuffer buf)
           
 AbstractFixedByteArrayBuffer SimpleRabaCoder.encode(IRaba raba, DataOutputBuffer buf)
           
 

Methods in com.bigdata.btree.raba.codec with parameters of type AbstractFixedByteArrayBuffer
 ICodedRaba EmptyRabaValueCoder.decode(AbstractFixedByteArrayBuffer data)
           
 ICodedRaba FixedLengthValueRabaCoder.decode(AbstractFixedByteArrayBuffer data)
           
 ICodedRaba CanonicalHuffmanRabaCoder.decode(AbstractFixedByteArrayBuffer data)
           
 ICodedRaba IRabaCoder.decode(AbstractFixedByteArrayBuffer data)
          Return an IRaba which can access the coded data.
 ICodedRaba FrontCodedRabaCoder.decode(AbstractFixedByteArrayBuffer data)
           
 ICodedRaba SimpleRabaCoder.decode(AbstractFixedByteArrayBuffer data)
           
 

Constructors in com.bigdata.btree.raba.codec with parameters of type AbstractFixedByteArrayBuffer
CanonicalHuffmanRabaCoder.CodedRabaImpl(AbstractFixedByteArrayBuffer data)
          Constructor used to decode a data record.
CanonicalHuffmanRabaCoder.CodedRabaImpl(AbstractFixedByteArrayBuffer data, it.unimi.dsi.compression.Decoder decoder, long decoderInputsBitLength)
          Constructor used when encoding a data record (more information is available from the caller's context).
 

Uses of AbstractFixedByteArrayBuffer in com.bigdata.htree
 

Methods in com.bigdata.htree that return AbstractFixedByteArrayBuffer
 AbstractFixedByteArrayBuffer MutableBucketData.data()
           
 AbstractFixedByteArrayBuffer MutableDirectoryPageData.data()
           
 AbstractFixedByteArrayBuffer NodeSerializer.encode(IAbstractNodeData node)
          Deprecated. This method is no longer used since I refactored the IndexSegmentBuilder to optionally stuff the generated nodes and leaves into the cache. It still works but it might go away in the future.
 

Uses of AbstractFixedByteArrayBuffer in com.bigdata.htree.data
 

Methods in com.bigdata.htree.data that return AbstractFixedByteArrayBuffer
 AbstractFixedByteArrayBuffer DefaultDirectoryPageCoder.encode(IDirectoryData node, DataOutputBuffer buf)
           
 

Methods in com.bigdata.htree.data with parameters of type AbstractFixedByteArrayBuffer
 IDirectoryData DefaultDirectoryPageCoder.decode(AbstractFixedByteArrayBuffer data)
           
 

Uses of AbstractFixedByteArrayBuffer in com.bigdata.io
 

Subclasses of AbstractFixedByteArrayBuffer in com.bigdata.io
 class FixedByteArrayBuffer
          Efficient absolute get/put operations on a slice of a byte[].
 

Methods in com.bigdata.io that return AbstractFixedByteArrayBuffer
 AbstractFixedByteArrayBuffer ByteArrayBuffer.slice(int off, int len)
          Return a slice of the backing buffer.
 AbstractFixedByteArrayBuffer AbstractFixedByteArrayBuffer.slice(int aoff, int alen)
           
 

Uses of AbstractFixedByteArrayBuffer in com.bigdata.rdf.spo
 

Methods in com.bigdata.rdf.spo that return AbstractFixedByteArrayBuffer
 AbstractFixedByteArrayBuffer FastRDFValueCoder2.encode(IRaba raba, DataOutputBuffer buf)
           
 

Methods in com.bigdata.rdf.spo with parameters of type AbstractFixedByteArrayBuffer
 ICodedRaba FastRDFValueCoder2.decode(AbstractFixedByteArrayBuffer data)
           
 



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