protected char quoteChar = QUOTE_CHAR.charAt(0);
@Override
protected void makeOptions(Parameterization config) {
super.makeOptions(config);
PatternParameter colParam = new PatternParameter(COLUMN_SEPARATOR_ID, WHITESPACE_PATTERN);
if(config.grab(colParam)) {
colSep = colParam.getValue();
}
StringParameter quoteParam = new StringParameter(QUOTE_ID, new StringLengthConstraint(1, 1), QUOTE_CHAR);
if(config.grab(quoteParam)) {
quoteChar = quoteParam.getValue().charAt(0);
}