public enum ReadDefaultReturnEnum extends Enum<ReadDefaultReturnEnum>
com.alibaba.excel.metadata.BasicParameter#clazz value, the default will return type.| Enum Constant and Description |
|---|
ACTUAL_DATA
Returns the actual type.
|
READ_CELL_DATA
Return to
ReadCellData, can decide which field you need. |
STRING
default.The content of cells into string, is the same as you see in the excel.
|
| Modifier and Type | Method and Description |
|---|---|
static ReadDefaultReturnEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReadDefaultReturnEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadDefaultReturnEnum STRING
public static final ReadDefaultReturnEnum ACTUAL_DATA
public static final ReadDefaultReturnEnum READ_CELL_DATA
ReadCellData, can decide which field you need.public static ReadDefaultReturnEnum[] values()
for (ReadDefaultReturnEnum c : ReadDefaultReturnEnum.values()) System.out.println(c);
public static ReadDefaultReturnEnum 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 © 2018–2024 Alibaba Group. All rights reserved.