All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.etlunit.DiffGridRow Maven / Gradle / Ivy

There is a newer version: 1.6.9
Show newest version
package org.etlunit;

public interface DiffGridRow
{
	/**
	 * For changed rows only.  For source added or target added
	 * disregard this method.
	 *
	 * @param col
	 */
	void setColumnName(String col);

	/**
	 * Sets the order key for this row
	 *
	 * @param key
	 */
	void setOrderKey(String key);

	/**
	 * Source value, or null if the target row is added
	 *
	 * @param value
	 */
	void setSourceValue(String value);

	/**
	 * Target value (always different), unless
	 * source row is unmatched.
	 *
	 * @param value
	 */
	void setTargetValue(String value);

	void done();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy