casa
$Rev:20696$
|
Implementation of TBData for double complex data. More...
#include <TBData.h>
Public Member Functions | |
TBDataDComplex (String value) | |
Constructor that parses a double complex from the given String. | |
TBDataDComplex (pair< double, double > value) | |
Constructor that takes the double complex data. | |
TBDataDComplex (complex< double > value) | |
Constructor that takes the double complex data. | |
TBDataDComplex (TBData &data) | |
Constructor that calls setValue(). | |
virtual | ~TBDataDComplex () |
String | asString () |
Returns the value in String form. | |
pair< double, double > | asDComplex () |
Returns the value. | |
double | asDouble () |
Invalid operations. | |
float | asFloat () |
asFloat() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a float. | |
int | asInt () |
asInt() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as an int. | |
unsigned int | asUInt () |
asUInt() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as an unsigned int. | |
short int | asShort () |
asShort() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a short. | |
bool | asBool () |
asBool() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a boolean. | |
char | asChar () |
asChar() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a char. | |
unsigned char | asUChar () |
asUChar() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as an unsigned character. | |
pair< float, float > | asComplex () |
asComplex() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a complex. | |
Record * | asRecord () |
asRecord() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a record. | |
void | setValue (TBData &value) |
If the given TBData is a String, parses a double complex from the String value. | |
String | getType () |
Returns the double complex type. | |
bool | equals (TBData *data) |
Returns true if the given data is a double complex type and their values are equal, false otherwise. | |
Private Attributes | |
pair< double, double > | value |
Value. |
Constructor that parses a double complex from the given String.
casa::TBDataDComplex::TBDataDComplex | ( | pair< double, double > | value | ) |
Constructor that takes the double complex data.
casa::TBDataDComplex::TBDataDComplex | ( | complex< double > | value | ) |
Constructor that takes the double complex data.
casa::TBDataDComplex::TBDataDComplex | ( | TBData & | data | ) |
Constructor that calls setValue().
virtual casa::TBDataDComplex::~TBDataDComplex | ( | ) | [virtual] |
bool casa::TBDataDComplex::asBool | ( | ) | [inline, virtual] |
asBool() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a boolean.
Implements casa::TBData.
char casa::TBDataDComplex::asChar | ( | ) | [inline, virtual] |
asChar() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a char.
Implements casa::TBData.
pair<float, float> casa::TBDataDComplex::asComplex | ( | ) | [inline, virtual] |
asComplex() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a complex.
Implements casa::TBData.
pair<double, double> casa::TBDataDComplex::asDComplex | ( | ) | [virtual] |
Returns the value.
Implements casa::TBData.
double casa::TBDataDComplex::asDouble | ( | ) | [inline, virtual] |
float casa::TBDataDComplex::asFloat | ( | ) | [inline, virtual] |
asFloat() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a float.
Implements casa::TBData.
int casa::TBDataDComplex::asInt | ( | ) | [inline, virtual] |
asInt() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as an int.
Implements casa::TBData.
Record* casa::TBDataDComplex::asRecord | ( | ) | [inline, virtual] |
asRecord() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a record.
Implements casa::TBData.
short int casa::TBDataDComplex::asShort | ( | ) | [inline, virtual] |
asShort() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as a short.
Implements casa::TBData.
String casa::TBDataDComplex::asString | ( | ) | [virtual] |
Returns the value in String form.
Implements casa::TBData.
unsigned char casa::TBDataDComplex::asUChar | ( | ) | [inline, virtual] |
asUChar() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as an unsigned character.
Implements casa::TBData.
unsigned int casa::TBDataDComplex::asUInt | ( | ) | [inline, virtual] |
asUInt() must be implemented by any subclass, although the returned value does not have to be valid for classes for which the value cannot be represented as an unsigned int.
Implements casa::TBData.
bool casa::TBDataDComplex::equals | ( | TBData * | data | ) | [virtual] |
Returns true if the given data is a double complex type and their values are equal, false otherwise.
Implements casa::TBData.
String casa::TBDataDComplex::getType | ( | ) | [inline, virtual] |
void casa::TBDataDComplex::setValue | ( | TBData & | value | ) | [virtual] |
If the given TBData is a String, parses a double complex from the String value.
Otherwise, if the given TBData is a double complex, sets the double complex value.
Implements casa::TBData.
pair<double, double> casa::TBDataDComplex::value [private] |