1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
package tim.prune.load;
/**
* Class to hold information about the contents of a file
* given a delimiter character
*/
public class DelimiterInfo
{
private char _delimiter = '\0';
private int _numRecords = 0;
private int _numWinningRecords = 0;
private int _maxFields = 0;
/**
* Constructor
* @param inChar delimiter character
*/
public DelimiterInfo(char inChar)
{
_delimiter = inChar;
}
/** @return the delimiter character */
public char getDelimiter()
{
return _delimiter;
}
/** @return the max number of fields */
public int getMaxFields()
{
return _maxFields;
}
/** @param inNumFields number of fields */
public void updateMaxFields(int inNumFields)
{
if (inNumFields > _maxFields)
_maxFields = inNumFields;
}
/** @return the number of records */
public int getNumRecords()
{
return _numRecords;
}
/** Increment the number of records */
public void incrementNumRecords()
{
_numRecords++;
}
/** @return the number of times this delimiter has won */
public int getNumWinningRecords()
{
return _numWinningRecords;
}
/** Increment the number of times this delimiter has won */
public void incrementNumWinningRecords()
{
_numWinningRecords++;
}
/** @return String for debug */
public String toString()
{
return "(delim:" + _delimiter + " fields:" + _maxFields + ", records:" + _numRecords + ")";
}
}
|