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

org.subtlelib.poi.api.condition.CellCondition Maven / Gradle / Ivy

The newest version!
package org.subtlelib.poi.api.condition;

/**
 * Sets execution of the subsequent cell dependent on condition.
 * 
 * @author i.voshkulat
 *
 * @param  implementing builder type
 */
public interface CellCondition {

	/**
	 * Make execution of the next cell conditional.
	 * Execution will take place only if condition evaluates to true.
	 * 
	 * @param condition execution condition
     * @return this
	 */
	public T conditionalCell(boolean condition);
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy