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.
53 lines
1.3 KiB
53 lines
1.3 KiB
package com.alibaba.excel.metadata; |
|
|
|
import java.util.List; |
|
import java.util.Locale; |
|
|
|
import com.alibaba.excel.converters.Converter; |
|
|
|
import lombok.Data; |
|
|
|
/** |
|
* Basic parameter |
|
* |
|
* @author Jiaju Zhuang |
|
**/ |
|
@Data |
|
public class BasicParameter { |
|
/** |
|
* You can only choose one of the {@link BasicParameter#head} and {@link BasicParameter#clazz} |
|
*/ |
|
private List<List<String>> head; |
|
/** |
|
* You can only choose one of the {@link BasicParameter#head} and {@link BasicParameter#clazz} |
|
*/ |
|
private Class<?> clazz; |
|
/** |
|
* Custom type conversions override the default |
|
*/ |
|
private List<Converter<?>> customConverterList; |
|
/** |
|
* 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; |
|
/** |
|
* A <code>Locale</code> object represents a specific geographical, political, or cultural region. This parameter is |
|
* used when formatting dates and numbers. |
|
*/ |
|
private Locale locale; |
|
|
|
/** |
|
* Whether to use scientific Format. |
|
* |
|
* default is false |
|
*/ |
|
private Boolean useScientificFormat; |
|
}
|
|
|