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

com.alibaba.excel.cache.selector.EternalReadCacheSelector Maven / Gradle / Ivy

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

import org.apache.poi.openxml4j.opc.PackagePart;

import com.alibaba.excel.cache.ReadCache;

/**
 * Choose a eternal cache
 *
 * @author Jiaju Zhuang
 **/
public class EternalReadCacheSelector implements ReadCacheSelector {
    private ReadCache readCache;

    public EternalReadCacheSelector(ReadCache readCache) {
        this.readCache = readCache;
    }

    @Override
    public ReadCache readCache(PackagePart sharedStringsTablePackagePart) {
        return readCache;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy