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

org.jxls.common.cellshift.CellShiftStrategy Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy