(DataOutput out)
| 495 | } |
| 496 | |
| 497 | @Override |
| 498 | public void write(DataOutput out) throws IOException { |
| 499 | out.writeByte(DataType.TUPLE); |
| 500 | int sz = size(); |
| 501 | out.writeInt(sz); |
| 502 | for (int i = 0; i < sz; i++) { |
| 503 | DataReaderWriter.writeDatum(out, mFields.get(i)); |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | @Override |
| 508 | public void readFields(DataInput in) throws IOException { |
nothing calls this directly
no test coverage detected