Home  Products  Purchase  Downloads  Demos  Forums  Blogs  Ticket  Wiki  API  Corporate

com.aspose.cells
Interface CellValueType


public interface CellValueType

Specifies a cell value type.

cell value type Cell.getValue() returns
CellValueType.NULL null
CellValueType.BOOLEAN Boolean
CellValueType.DATETIME Calendar
CellValueType.STRING String
CellValueType.INT Integer
CellValueType.DOULE Double
CellValueType.RICH_TEXT_STRING String
CellValueType.FORMULA null


Field Summary
static short BOOLEAN
          Cell value is boolean.
static short DATETIME
          Cell value is datetime.
static short DOUBLE
          Cell value is double.
static short FORMULA
          Cell value is formula.
static short INT
          Cell value is int.
static short NULL
          Cell value is null.
static short RICH_TEXT_STRING
          Cell value is rich text string.
static short STRING
          Cell value is string.
 

Field Detail

NULL

static final short NULL
Cell value is null.

See Also:
Constant Field Values

BOOLEAN

static final short BOOLEAN
Cell value is boolean.

See Also:
Constant Field Values

DATETIME

static final short DATETIME
Cell value is datetime.

See Also:
Constant Field Values

STRING

static final short STRING
Cell value is string.

See Also:
Constant Field Values

INT

static final short INT
Cell value is int.

See Also:
Constant Field Values

DOUBLE

static final short DOUBLE
Cell value is double.

See Also:
Constant Field Values

RICH_TEXT_STRING

static final short RICH_TEXT_STRING
Cell value is rich text string.

See Also:
Constant Field Values

FORMULA

static final short FORMULA
Cell value is formula.

See Also:
Constant Field Values