org.jxls.common.cellshift.CellShiftStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls Show documentation
Show all versions of jxls Show documentation
Small library for Excel generation based on XLS templates
package org.jxls.common.cellshift;
import org.jxls.common.CellRef;
/**
* Defines cell shift strategy
*/
public interface CellShiftStrategy {
boolean requiresColShifting(CellRef cell, int startRow, int endRow, int startColShift);
boolean requiresRowShifting(CellRef cell, int startCol, int endCol, int startRowShift);
}