public enum CellValueType extends Enum<CellValueType>
Enum Constant and Description |
---|
BOOL
Cell value is boolean.
|
DOUBLE
Cell value is double.
|
INT
Cell value is integer.
|
LOCAL_DATE_TIME
Cell value is date-time.
|
NULL
Blank cell.
|
OBJECT
A general type representing any reference or value type
not explicitly represented by another CellValueType.
|
STRING
Cell value is string.
|
Modifier and Type | Method and Description |
---|---|
static CellValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellValueType BOOL
public static final CellValueType DOUBLE
public static final CellValueType INT
public static final CellValueType LOCAL_DATE_TIME
public static final CellValueType NULL
public static final CellValueType OBJECT
public static final CellValueType STRING
public static CellValueType 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 nullpublic static CellValueType[] values()
for (CellValueType c : CellValueType.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.