org.jxls.transform.poi.WritableCellValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-poi Show documentation
Show all versions of jxls-poi Show documentation
Apache POI Transformer implementation for Jxls library
package org.jxls.transform.poi;
import org.jxls.common.Context;
import org.apache.poi.ss.usermodel.Cell;
/**
* Defines an interface for a cell value which knows how to write itself to a cell
*
* @author Leonid Vysochyn
*/
public interface WritableCellValue {
Object writeToCell(Cell cell, Context context);
}