ByteArrayView | 
ByteArrayView.clone() | 
 Implement Object.clone, which just delegates to ByteArrayView.copy(). 
 | 
abstract ByteArrayView | 
ByteArrayView.copy() | 
 Create a new ByteArrayView which wraps a new byte[] containing a copy of 
 this view's data
 NB: this method copies the underlying data 
 | 
abstract ByteArrayView | 
ByteArrayView.copy(int offset,
    int length) | 
 Create a new ByteArrayView which wraps a new byte[] containing a copy of 
 this view's data
 NB: this method copies the underlying data 
 | 
ByteArrayView | 
Tuple.getBlobBuffer(int fieldIndex) | 
 Return a ByteArrayView for a given blob field. 
 | 
ByteArrayView | 
Tuple.getBlobBuffer(Schema.Field field) | 
 Return a ByteArrayView for a given blob field. 
 | 
ByteArrayView | 
Tuple.getBlobBuffer(String fieldPathName) | 
 Return a ByteArrayView for a given blob field. 
 | 
protected ByteArrayView | 
ReadOnlyCompositeTuple.getBlobBufferImpl(Schema.Field field) | 
  | 
protected ByteArrayView | 
ReadOnlyTupleByIndexWrapper.getBlobBufferImpl(Schema.Field field) | 
  | 
ByteArrayView | 
ReadOnlyTupleRep.getBlobBufferImpl(Schema.Field field) | 
  | 
protected ByteArrayView | 
ReadWriteTupleWrapper.getBlobBufferImpl(Schema.Field field) | 
  | 
ByteArrayView | 
TupleRep.getBlobBufferImpl(Schema.Field field) | 
  | 
static ByteArrayView | 
ByteArrayView.makeCopiedView(byte[] bytes) | 
 Create a new ByteArrayView which wraps the entire provided byte[] (which is copied)
 NB: The bytes are copied 
 | 
static ByteArrayView | 
ByteArrayView.makeCopiedView(byte[] bytes,
              int offset,
              int length) | 
 Create a new ByteArrayView which wraps the provided byte[] (which is copied) 
 between offset and length from offset
 NB: The bytes are copied 
 | 
static ByteArrayView | 
ByteArrayView.makeView(byte[] bytes) | 
 Create a new ByteArrayView which wraps the entire provided byte[]
 NB: no data is copied when doing this 
 | 
static ByteArrayView | 
ByteArrayView.makeView(byte[] bytes,
        int offset,
        int length) | 
 Create a new ByteArrayView which wraps the provided byte[] between offset and length from offset
 NB: no data is copied when doing this 
 | 
static ByteArrayView | 
ByteArrayView.makeView(String s) | 
 Create a new ByteArrayView which converts the provided string to bytes and wraps it. 
 | 
abstract ByteArrayView | 
ByteArrayView.slice(int offset,
     int length) | 
 Create a new ByteArrayView which wraps a portion of this one
 NB: no data is copied when doing this 
 |