Public Member Functions | |
VOTColumn () | |
~VOTColumn () | |
VOTColumn | operator= (const VOTColumn &column) |
VOTColumn (const VOTColumn &column) | |
int | getLogicalArray (Bool *&boolArray, int *&valid, int &numOfElements) |
int | getBitArray (char *&bitArray, int &numOfElements) |
int | getByteArray (unsigned char *&byteArray, int &numOfElements) |
int | getShortArray (short *&shortArray, int *&valid, int &numOfElements) |
int | getIntArray (int *&intArray, int *&valid, int &numOfElements) |
int | getLongArray (long *&longArray, int *&valid, int &numOfElements) |
int | getCharArray (char *&charArray, int &numOfElements) |
int | getUnicodeArray (unsigned short *&unicodeArray, int &numOfElements) |
int | getFloatArray (float *&floatArray, int *&valid, int &numOfElements) |
int | getDoubleArray (double *&doubleArray, int *&valid, int &numOfElements) |
int | getFloatComplexArray (float *&complexArray, int *&valid, int &numOfElements) |
int | getDoubleComplexArray (double *&complexArray, int *&valid, int &numOfElements) |
int | getRef (char *&ref) |
Column contains data in the primitive form. It may also contain an array.
|
Default constructor. |
|
Default deconstructor. |
|
Copy constructor. |
|
Gets the data in a bit array.
|
|
Gets the data in a byte array
|
|
Gets the data in a char array
|
|
Gets the data in a double array. If the data in some array location is not double, this will be indicated by a INVALID_DATATYPE_ERROR in the corresponding array location of the 'valid' array.
|
|
Gets the complex data as double array. If the data in some array location is not double, this will be indicated by a INVALID_DATATYPE_ERROR in the corresponding array location of the 'valid' array.
|
|
Gets the data in a float array. If the data in some array location is not float, this will be indicated by a INVALID_DATATYPE_ERROR in the corresponding array location of the 'valid' array.
|
|
Gets the complex data as float array. If the data in some array location is not float, this will be indicated by a INVALID_DATATYPE_ERROR in the corresponding array location of the 'valid' array.
|
|
Gets the data in an integer array. If the data in some array location is not int, this will be indicated by a INVALID_DATATYPE_ERROR in the corresponding array location of the 'valid' array.
|
|
Gets the data in a boolean array. If the data in some array location is not boolean, this will be indicated by a INVALID_DATATYPE_ERROR in the corresponding array location of the 'valid' array.
|
|
Gets the data in a long array. If the data in some array location is not long, this will be indicated by a INVALID_DATATYPE_ERROR in the corresponding array location of the 'valid' array.
|
|
Gets attribute 'ref' of <TD>. |
|
Gets the data in a short array. If the data in some array location is not short, this will be indicated by a INVALID_DATATYPE_ERROR in the corresponding array location of the 'valid' array.
|
|
Gets the unicode data array
|
|
Assignment operator overloaded. |