public enum ExcelReadType extends Enum<ExcelReadType>
| Enum Constant and Description |
|---|
COMMENT
批注
|
DATE
日期
|
DECIMAL
数字
|
INTEGER
整数
|
LINK_ADDRESS
超链接
|
LONG
整数
|
PHONE
手机号
|
PICTURE
图片
|
TEXT
TEXT
|
| Modifier and Type | Method and Description |
|---|---|
static ExcelReadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelReadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelReadType TEXT
Stringpublic static final ExcelReadType DECIMAL
BigDecimalpublic static final ExcelReadType INTEGER
Integerpublic static final ExcelReadType LONG
Longpublic static final ExcelReadType PHONE
Stringpublic static final ExcelReadType DATE
Datepublic static final ExcelReadType LINK_ADDRESS
Stringpublic static final ExcelReadType COMMENT
Stringpublic static final ExcelReadType PICTURE
byte[],
base64,
OutputStream,
ByteArrayOutputStreampublic static ExcelReadType[] values()
for (ExcelReadType c : ExcelReadType.values()) System.out.println(c);
public static ExcelReadType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025. All rights reserved.