public static enum DataCell.CellType extends Enum<DataCell.CellType>
| Enum Constant and Description |
|---|
DATE |
ENUM |
NUMBER |
READ_ONLY |
SPLITTER |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static DataCell.CellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataCell.CellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataCell.CellType STRING
public static final DataCell.CellType ENUM
public static final DataCell.CellType NUMBER
public static final DataCell.CellType READ_ONLY
public static final DataCell.CellType DATE
public static final DataCell.CellType SPLITTER
public static DataCell.CellType[] values()
for (DataCell.CellType c : DataCell.CellType.values()) System.out.println(c);
public static DataCell.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 null