CellValueType

Inheritance: java.lang.Object

public final class CellValueType

Specifies a cell value type.

Fields

FieldDescription
IS_BOOLCell value is boolean.
IS_DATE_TIMECell value is datetime.
IS_ERRORCell contains error value.
IS_NULLBlank cell.
IS_NUMERICCell value is numeric.
IS_STRINGCell value is string.
IS_UNKNOWNCell value type is unknown.

Methods

MethodDescription
equals(Object arg0)
getClass()
hashCode()
notify()
notifyAll()
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

IS_BOOL

public static final int IS_BOOL

Cell value is boolean. Corresponding value must be bool.

IS_DATE_TIME

public static final int IS_DATE_TIME

Cell value is datetime. Corresponding value must be DateTime.

IS_ERROR

public static final int IS_ERROR

Cell contains error value. Corresponding value must be error string.

IS_NULL

public static final int IS_NULL

Blank cell. Corresponding value should be null.

IS_NUMERIC

public static final int IS_NUMERIC

Cell value is numeric. Corresponding value must be int or double.

IS_STRING

public static final int IS_STRING

Cell value is string. Corresponding value must be string.

IS_UNKNOWN

public static final int IS_UNKNOWN

Cell value type is unknown.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int