(int idx, int val)
| 27 | |
| 28 | public interface TypeAwareTuple extends Tuple { |
| 29 | public void setInt(int idx, int val) throws ExecException; |
| 30 | public void setFloat(int idx, float val) throws ExecException; |
| 31 | public void setDouble(int idx, double val) throws ExecException; |
| 32 | public void setLong(int idx, long val) throws ExecException; |
no outgoing calls