* @param keySeparator The separator between the flattened elements of the key
* @param keyValueSeparator The separator between the key and the value
*/
public KeyValueReader( final String keySeparator, final String keyValueSeparator )
{
builder = new BasicKeyValueBuilder( keySeparator );
this.keyValueSeparator = keyValueSeparator;
}