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

io.github.ninobomba.commons.data.etl.IETLCleanAction Maven / Gradle / Ivy

The newest version!
package io.github.ninobomba.commons.data.etl;

/**
 * The DataCleaningAction interface represents an action to clean data.
 */
public interface IETLCleanAction {

	/**
	 * Executes the clean action.
	 * This method is called to perform the clean action on the data.
	 *
	 * @return {@code true} if the clean action was executed successfully, {@code false} otherwise.
	 */
	boolean executeCleanAction ( );

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy