public static enum CellData.CellType extends Enum<CellData.CellType>
| Enum Constant and Description |
|---|
BLANK |
BOOLEAN |
DATE |
ERROR |
FORMULA |
INSTANT |
LOCAL_DATE |
LOCAL_DATETIME |
LOCAL_TIME |
NUMBER |
STRING |
ZONED_DATETIME |
| Modifier and Type | Method and Description |
|---|---|
static CellData.CellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellData.CellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellData.CellType STRING
public static final CellData.CellType NUMBER
public static final CellData.CellType BOOLEAN
public static final CellData.CellType DATE
public static final CellData.CellType LOCAL_DATE
public static final CellData.CellType LOCAL_TIME
public static final CellData.CellType LOCAL_DATETIME
public static final CellData.CellType ZONED_DATETIME
public static final CellData.CellType INSTANT
public static final CellData.CellType FORMULA
public static final CellData.CellType BLANK
public static final CellData.CellType ERROR
public static CellData.CellType[] values()
for (CellData.CellType c : CellData.CellType.values()) System.out.println(c);
public static CellData.CellType 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 © 2022. All rights reserved.