public static enum CellData.CellType extends Enum<CellData.CellType>
Enum Constant and Description |
---|
BLANK |
BOOLEAN |
ERROR |
FORMULA |
NUMERIC |
STRING |
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 NUMERIC
public static final CellData.CellType STRING
public static final CellData.CellType FORMULA
public static final CellData.CellType BLANK
public static final CellData.CellType BOOLEAN
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 © 2020. All rights reserved.