Package jxl
Class CellType
- java.lang.Object
-
- jxl.CellType
-
public final class CellType extends java.lang.ObjectAn enumeration type listing the available content types for a cell
-
-
Field Summary
Fields Modifier and Type Field Description static CellTypeBOOLEANstatic CellTypeBOOLEAN_FORMULAstatic CellTypeDATEstatic CellTypeDATE_FORMULAstatic CellTypeEMPTYAn empty cell can still contain formatting information and commentsstatic CellTypeERRORstatic CellTypeFORMULA_ERRORstatic CellTypeLABELstatic CellTypeNUMBERstatic CellTypeNUMBER_FORMULAstatic CellTypeSTRING_FORMULA
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()Returns a string description of this cell
-
-
-
Field Detail
-
EMPTY
public static final CellType EMPTY
An empty cell can still contain formatting information and comments
-
LABEL
public static final CellType LABEL
-
NUMBER
public static final CellType NUMBER
-
BOOLEAN
public static final CellType BOOLEAN
-
ERROR
public static final CellType ERROR
-
NUMBER_FORMULA
public static final CellType NUMBER_FORMULA
-
DATE_FORMULA
public static final CellType DATE_FORMULA
-
STRING_FORMULA
public static final CellType STRING_FORMULA
-
BOOLEAN_FORMULA
public static final CellType BOOLEAN_FORMULA
-
FORMULA_ERROR
public static final CellType FORMULA_ERROR
-
DATE
public static final CellType DATE
-
-