blob: 42057240c2e5eb35df3f570dccc9a5d073b3f9e2 [file] [log] [blame]
package edu.uci.ics.hyracks.dataflow.common.data.accessors;
public interface ITupleReference {
public int getFieldCount();
public byte[] getFieldData(int fIdx);
public int getFieldStart(int fIdx);
public int getFieldLength(int fIdx);
}