public static enum CellObject.CellType extends java.lang.Enum<CellObject.CellType>
Note, empty cells are not added to the data model. The access from a template
to such a cell will evaluate to null. Therefore, the enumeration values blank and undefined will never be seen from a template. See CellObject.isNotBlank for a more detailed consideration.
| Enum Constant and Description |
|---|
blank |
bool |
date |
error |
integer |
real |
text |
undefined |
| Modifier and Type | Method and Description |
|---|---|
static CellObject.CellType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CellObject.CellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellObject.CellType undefined
public static final CellObject.CellType blank
public static final CellObject.CellType integer
public static final CellObject.CellType real
public static final CellObject.CellType date
public static final CellObject.CellType text
public static final CellObject.CellType bool
public static final CellObject.CellType error
public static CellObject.CellType[] values()
for (CellObject.CellType c : CellObject.CellType.values()) System.out.println(c);
public static CellObject.CellType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null