
com.qiniu.convert.COSObjToMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qsuits Show documentation
Show all versions of qsuits Show documentation
qiniu-suits is a efficient tools for qiniu api implemented by java8.
package com.qiniu.convert;
import com.qcloud.cos.model.COSObjectSummary;
import com.qiniu.util.LineUtils;
import java.io.IOException;
import java.util.*;
public class COSObjToMap extends Converter> {
private Map indexMap;
public COSObjToMap(Map indexMap) {
this.indexMap = indexMap;
}
@Override
public Map convertToV(COSObjectSummary line) throws IOException {
return LineUtils.getItemMap(line, indexMap);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy