vortex
Class dbBlob

java.lang.Object
  extended by vortex.dbBlob

public class dbBlob
extends java.lang.Object

Binary Large OBject (BLOB) container.


Field Summary
 byte[] data
          The BLOB data.
 int length
          Length of the BLOB.
 int offset
          Current offset into the BLOB.
 
Constructor Summary
dbBlob(int allocateLength)
           
dbBlob(int allocateLength, byte[] blobData)
           
dbBlob(java.lang.String blobData)
           
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

length

public int length
Length of the BLOB.


offset

public int offset
Current offset into the BLOB.


data

public byte[] data
The BLOB data.

Constructor Detail

dbBlob

public dbBlob(int allocateLength)

dbBlob

public dbBlob(int allocateLength,
              byte[] blobData)

dbBlob

public dbBlob(java.lang.String blobData)
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object


Updated May 06 2016