com.codetaco.funnel.orderby.KeyContext Maven / Gradle / Ivy
package com.codetaco.funnel.orderby;
/**
*
* KeyContext class.
*
*
* @author Chris DeGreef [email protected]
*/
public class KeyContext
{
public long recordNumber;
/*
* Only the first occurrence is used for non-csv files. All occurrences are
* for the fields in the csv row.
*/
public byte[][] rawRecordBytes;
public byte[] key;
public int keyLength;
}