All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.excel.cache.MapCache Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package com.alibaba.excel.cache;

import java.util.HashMap;
import java.util.Map;

import com.alibaba.excel.context.AnalysisContext;

/**
 *
 * Putting temporary data directly into a map is a little more efficient but very memory intensive
 *
 * @author Jiaju Zhuang
 */
public class MapCache implements ReadCache {
    private Map cache = new HashMap();
    private int index = 0;

    @Override
    public void init(AnalysisContext analysisContext) {}

    @Override
    public void put(String value) {
        cache.put(index++, value);
    }

    @Override
    public String get(Integer key) {
        if (key == null || key < 0) {
            return null;
        }
        return cache.get(key);
    }

    @Override
    public void putFinished() {}

    @Override
    public void destroy() {}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy