forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
515 B
31 lines
515 B
package com.alibaba.excel.analysis.v07; |
|
|
|
import java.util.Map; |
|
|
|
import com.alibaba.excel.metadata.CellData; |
|
|
|
/** |
|
* Result holder |
|
* |
|
* @author jipengfei |
|
*/ |
|
public interface XlsxRowResultHolder { |
|
/** |
|
* Clear Result |
|
*/ |
|
void clearResult(); |
|
|
|
/** |
|
* Append current 'cellValue' |
|
* |
|
* @param currentCellValue |
|
*/ |
|
void appendCurrentCellValue(String currentCellValue); |
|
|
|
/** |
|
* Get row content |
|
* |
|
* @return |
|
*/ |
|
Map<Integer, CellData> getCurRowContent(); |
|
}
|
|
|