com.github.shootercheng.export.define.CellFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-export Show documentation
Show all versions of common-export Show documentation
Memory export, Querying export CSV, Excel
package com.github.shootercheng.export.define;
/**
* @author chengdu
*
*/
public interface CellFormat {
/**
* format cell value
* @param column csv or excel column
* @param cellValue cell value
* @return String
*/
String format(String column, String cellValue);
}