forked from fanruan/easyexcel
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
826 B
45 lines
826 B
7 years ago
|
package com.alibaba.excel.parameter;
|
||
|
|
||
|
import com.alibaba.excel.support.ExcelTypeEnum;
|
||
|
|
||
|
import java.io.OutputStream;
|
||
|
|
||
|
/**
|
||
|
* {@link com.alibaba.excel.ExcelWriter}
|
||
|
*
|
||
|
* @author jipengfei
|
||
|
*/
|
||
|
@Deprecated
|
||
|
public class ExcelWriteParam {
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
private OutputStream outputStream;
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
private ExcelTypeEnum type;
|
||
|
|
||
|
public ExcelWriteParam(OutputStream outputStream, ExcelTypeEnum type) {
|
||
|
this.outputStream = outputStream;
|
||
|
this.type = type;
|
||
|
|
||
|
}
|
||
|
|
||
|
public OutputStream getOutputStream() {
|
||
|
return outputStream;
|
||
|
}
|
||
|
|
||
|
public void setOutputStream(OutputStream outputStream) {
|
||
|
this.outputStream = outputStream;
|
||
|
}
|
||
|
|
||
|
public ExcelTypeEnum getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public void setType(ExcelTypeEnum type) {
|
||
|
this.type = type;
|
||
|
}
|
||
|
}
|