org.subtlelib.poi.api.condition.CellCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poi.builder Show documentation
Show all versions of poi.builder Show documentation
Convenience library for apache poi-based xls documents creation
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