public enum ExcelType extends Enum<ExcelType>
| 枚举常量和说明 |
|---|
XLS |
XLSX
Excel file type, XLXS: used for big data processing,
XLS: 2003 version, more than 6w data will report error or OOM,
|
public static final ExcelType XLSX
public static final ExcelType XLS
public static ExcelType[] values()
for (ExcelType c : ExcelType.values()) System.out.println(c);
public static ExcelType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2021. All rights reserved.