@InterfaceAudience.Public @InterfaceStability.Stable public class TupleWritable extends Object implements Writable, Iterable<Writable>
Writables.
 This is *not* a general-purpose tuple type. In almost all cases, users are
 encouraged to implement their own serializable types, which can perform
 better validation and provide more efficient encodings than this class is
 capable. TupleWritable relies on the join framework for type safety and
 assumes its instances will rarely be persisted, assumptions not only
 incompatible with, but contrary to the general case.Writable| コンストラクタと説明 | 
|---|
| 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. | 
| 修飾子とタイプ | メソッドと説明 | 
|---|---|
| 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. | 
forEach, spliteratorpublic TupleWritable()
public TupleWritable(Writable[] vals)
public boolean has(int i)
public int size()
public Iterator<Writable> iterator()
public String toString()
public void write(DataOutput out) throws IOException
out.
 TupleWritable format:
 <count><type1><type2>...<typen><obj1><obj2>...<objn>
 write インタフェース内 Writableout - DataOuput to serialize this object into.IOExceptionpublic void readFields(DataInput in) throws IOException
in.  
 
 For efficiency, implementations should attempt to re-use storage in the existing object where possible.
readFields インタフェース内 Writablein - DataInput to deseriablize this object from.IOExceptionCopyright © 2016 Apache Software Foundation. All rights reserved.