|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.hadoop.mapred.join.TupleWritable
public class TupleWritable
Writable type storing multiple Writables.
| Constructor Summary | |
|---|---|
TupleWritable()
Create an empty tuple with no allocated storage for writables. |
|
TupleWritable(Writable[] vals)
Initialize tuple with storage; unknown whether any of them contain "written" values. |
|
| Method Summary | |
|---|---|
boolean |
equals(Object other)
|
Writable |
get(int i)
Get ith Writable from Tuple. |
boolean |
has(int i)
Return true if tuple has an element at the position provided. |
int |
hashCode()
|
Iterator<Writable> |
iterator()
Return an iterator over the elements in this tuple. |
void |
readFields(DataInput in)
Deserialize the fields of this object from in. |
int |
size()
The number of children in this Tuple. |
String |
toString()
Convert Tuple to String as in the following. |
void |
write(DataOutput out)
Writes each Writable to out. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public TupleWritable()
public TupleWritable(Writable[] vals)
| Method Detail |
|---|
public boolean has(int i)
public Writable get(int i)
public int size()
public boolean equals(Object other)
equals in class Objectpublic int hashCode()
hashCode in class Objectpublic Iterator<Writable> iterator()
iterator in interface Iterable<Writable>public String toString()
toString in class Object
public void write(DataOutput out)
throws IOException
out.
TupleWritable format:
<count><type1><type2>...<typen><obj1><obj2>...<objn>
write in interface Writableout - DataOuput to serialize this object into.
IOException
public void readFields(DataInput in)
throws IOException
in.
For efficiency, implementations should attempt to re-use storage in the existing object where possible.
readFields in interface Writablein - DataInput to deseriablize this object from.
IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||