org.subtlelib.poi.api.condition.RowCondition Maven / Gradle / Ivy
package org.subtlelib.poi.api.condition;
/**
* Defines conditional row creation routines.
*
* @author i.voshkulat
*
* @param implementing builder type
*/
public interface RowCondition {
/**
* Create row in current position within the sheet and process all the configurations on it only if condition evaluates to true.
*
* @param condition execution condition
* @return this
*/
public T nextConditionalRow(boolean condition);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy