Uses of Class
org.apache.pig.data.DataByteArray

Packages that use DataByteArray
org.apache.pig Public interfaces and classes for Pig. 
org.apache.pig.backend.hadoop.accumulo   
org.apache.pig.backend.hadoop.hbase   
org.apache.pig.builtin This package contains builtin Pig UDFs. 
org.apache.pig.data This package contains implementations of Pig specific data types as well as support functions for reading, writing, and using all Pig data types. 
org.apache.pig.scripting.jruby   
 

Uses of DataByteArray in org.apache.pig
 

Methods in org.apache.pig with parameters of type DataByteArray
 byte[] StoreCaster.toBytes(DataByteArray a)
           
 

Uses of DataByteArray in org.apache.pig.backend.hadoop.accumulo
 

Methods in org.apache.pig.backend.hadoop.accumulo with parameters of type DataByteArray
 byte[] AccumuloBinaryConverter.toBytes(DataByteArray a)
           
 

Uses of DataByteArray in org.apache.pig.backend.hadoop.hbase
 

Methods in org.apache.pig.backend.hadoop.hbase with parameters of type DataByteArray
 byte[] HBaseBinaryConverter.toBytes(DataByteArray a)
           
 

Uses of DataByteArray in org.apache.pig.builtin
 

Methods in org.apache.pig.builtin that return DataByteArray
protected  DataByteArray BuildBloomBase.bloomOr(Tuple input)
           
protected  DataByteArray BuildBloomBase.bloomOut()
           
 DataByteArray CONCAT.exec(Tuple input)
           
 DataByteArray BuildBloom.exec(Tuple input)
           
 DataByteArray BuildBloom.Final.exec(Tuple input)
           
protected  DataByteArray PigStorage.readField(byte[] bytes, int start, int end)
          Read the bytes between start and end into a DataByteArray for inclusion in the return tuple.
 

Methods in org.apache.pig.builtin with parameters of type DataByteArray
protected  org.apache.hadoop.util.bloom.BloomFilter BuildBloomBase.bloomIn(DataByteArray b)
           
 void Bloom.setFilter(DataByteArray dba)
          For testing only, do not use directly.
 byte[] Utf8StorageConverter.toBytes(DataByteArray a)
           
 

Uses of DataByteArray in org.apache.pig.data
 

Methods in org.apache.pig.data that return DataByteArray
 DataByteArray DataByteArray.append(byte[] ba)
           
 DataByteArray DataByteArray.append(byte[] ba, int start, int baLength)
           
 DataByteArray DataByteArray.append(DataByteArray b)
          Append given byte array to the internal byte array.
 DataByteArray DataByteArray.append(String str)
           
protected  DataByteArray SchemaTuple.box(byte[] v)
           
 

Methods in org.apache.pig.data with parameters of type DataByteArray
 DataByteArray DataByteArray.append(DataByteArray b)
          Append given byte array to the internal byte array.
protected  byte[] SchemaTuple.unbox(DataByteArray v)
           
 

Constructors in org.apache.pig.data with parameters of type DataByteArray
DataByteArray(DataByteArray b, DataByteArray c)
          Construct a byte array concatenating the two provided byte arrays as the content.
 

Uses of DataByteArray in org.apache.pig.scripting.jruby
 

Methods in org.apache.pig.scripting.jruby that return DataByteArray
 DataByteArray RubyDataByteArray.getDBA()
           
static DataByteArray PigJrubyLibrary.rubyToPig(RubyDataByteArray rbObject)
          A type specific conversion routine.
 

Methods in org.apache.pig.scripting.jruby with parameters of type DataByteArray
static RubyDataByteArray PigJrubyLibrary.pigToRuby(org.jruby.Ruby ruby, DataByteArray object)
          A type specific conversion routine.
 

Constructors in org.apache.pig.scripting.jruby with parameters of type DataByteArray
RubyDataByteArray(org.jruby.Ruby ruby, org.jruby.RubyClass rc, DataByteArray dba)
          Given a DataByteArray, this constructor creates a new one which copies the underlying bytes.
RubyDataByteArray(org.jruby.Ruby ruby, org.jruby.RubyClass rc, DataByteArray dba1, DataByteArray dba2)
          This constructor makes a RubyDataByteArray whose underlying bytes are a concatenation of the given bytes.
 



Copyright © 2007-2012 The Apache Software Foundation