mirror of https://github.com/alibaba/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.
38 lines
781 B
38 lines
781 B
6 years ago
|
package com.alibaba.excel.metadata;
|
||
|
|
||
|
/**
|
||
|
* Global configuration
|
||
|
*
|
||
|
* @author zhuangjiaju
|
||
|
*/
|
||
|
public class GlobalConfiguration {
|
||
|
/**
|
||
|
* Automatic trim includes sheet name and content
|
||
|
*/
|
||
|
private Boolean autoTrim;
|
||
|
/**
|
||
|
* true if date uses 1904 windowing, or false if using 1900 date windowing.
|
||
|
*
|
||
|
* default is false
|
||
|
*
|
||
|
* @return
|
||
|
*/
|
||
|
private Boolean use1904windowing;
|
||
|
|
||
|
public Boolean getUse1904windowing() {
|
||
|
return use1904windowing;
|
||
|
}
|
||
|
|
||
|
public void setUse1904windowing(Boolean use1904windowing) {
|
||
|
this.use1904windowing = use1904windowing;
|
||
|
}
|
||
|
|
||
|
public Boolean getAutoTrim() {
|
||
|
return autoTrim;
|
||
|
}
|
||
|
|
||
|
public void setAutoTrim(Boolean autoTrim) {
|
||
|
this.autoTrim = autoTrim;
|
||
|
}
|
||
|
}
|