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.

34 lines
551 B

package com.alibaba.excel.analysis.v07;
import java.util.Map;
6 years ago
import com.alibaba.excel.metadata.CellData;
/**
* Result holder
6 years ago
*
* @author jipengfei
*/
public interface XlsxRowResultHolder {
/**
* Clear Result
*/
void clearResult();
/**
* Append current 'cellValue'
6 years ago
*
* @param ch
* @param start
* @param length
*/
void appendCurrentCellValue(char[] ch, int start, int length);
/**
* Get row content
6 years ago
*
* @return
*/
Map<Integer, CellData> getCurRowContent();
}