CellValueType
Contents
[
Hide
]Inheritance: java.lang.Object
public final class CellValueType
Specifies a cell value type.
Fields
| Field | Description | 
|---|---|
| IS_BOOL | Cell value is boolean. | 
| IS_DATE_TIME | Cell value is datetime. | 
| IS_ERROR | Cell contains error value. | 
| IS_NULL | Blank cell. | 
| IS_NUMERIC | Cell value is numeric. | 
| IS_STRING | Cell value is string. | 
| IS_UNKNOWN | Cell value type is unknown. | 
Methods
| Method | Description | 
|---|---|
| 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:
| Parameter | Type | Description | 
|---|---|---|
| arg0 | java.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:
| Parameter | Type | Description | 
|---|---|---|
| arg0 | long | 
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| Parameter | Type | Description | 
|---|---|---|
| arg0 | long | |
| arg1 | int |