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.

45 lines
642 B

package com.alibaba.excel.cache;
import com.alibaba.excel.context.AnalysisContext;
/**
* Read cache
*
* @author zhuangjiaju
*/
public interface ReadCache {
/**
* Initialize cache
*
* @param analysisContext
*/
void init(AnalysisContext analysisContext);
/**
* Automatically generate the key and put it in the cache.Key start from 0
*
* @param value
*/
void put(String value);
/**
* Get
*
* @param key
* @return
*/
String get(Integer key);
/**
* 所有
*/
void putFinished();
/**
*
*/
void destroy();
}