Append a field to a tuple. This method is not efficient as it may force copying of existing data in order to grow the data structure. Whenever possible you should construct your Tuple with the newTuple(int) method and then fill in the values with set(), rather than construct it with newTuple() and a
(Object val)
| 151 | * Object to append to the tuple. |
| 152 | */ |
| 153 | @Override |
| 154 | public void append(Object val) { |
| 155 | mFields.add(val); |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * Determine the size of tuple in memory. This is used by data bags to determine their memory size. This need not be |