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
String
public static final ExcelReadType DECIMAL
BigDecimal
public static final ExcelReadType INTEGER
Integer
public static final ExcelReadType LONG
Long
public static final ExcelReadType PHONE
String
public static final ExcelReadType DATE
Date
public static final ExcelReadType LINK_ADDRESS
String
public static final ExcelReadType COMMENT
String
public static final ExcelReadType PICTURE
byte[]
,
base64
,
OutputStream
,
ByteArrayOutputStream
public 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 © 2024. All rights reserved.