#include <fmtable.h>
Public Types | |
enum | ISDATE { kIsDate } |
This enum is only used to let callers distinguish between the Formattable(UDate) constructor and the Formattable(double) constructor; the compiler cannot distinguish the signatures, since UDate is currently typedefed to be either double or long. More... | |
enum | Type { kDate, kDouble, kLong, kString, kArray, kInt64, kObject } |
Selector for flavor of data type contained within a Formattable object. More... | |
Public Member Functions | |
Formattable () | |
Default constructor. | |
Formattable (UDate d, ISDATE flag) | |
Creates a Formattable object with a UDate instance. | |
Formattable (double d) | |
Creates a Formattable object with a double number. | |
Formattable (int32_t l) | |
Creates a Formattable object with a long number. | |
Formattable (int64_t ll) | |
Creates a Formattable object with an int64_t number. | |
Formattable (const char *strToCopy) | |
Creates a Formattable object with a char string pointer. | |
Formattable (const UnicodeString &strToCopy) | |
Creates a Formattable object with a UnicodeString object to copy from. | |
Formattable (UnicodeString *strToAdopt) | |
Creates a Formattable object with a UnicodeString object to adopt from. | |
Formattable (const Formattable *arrayToCopy, int32_t count) | |
Creates a Formattable object with an array of Formattable objects. | |
Formattable (UObject *objectToAdopt) | |
Creates a Formattable object that adopts the given UObject. | |
Formattable (const Formattable &) | |
Copy constructor. | |
Formattable & | operator= (const Formattable &rhs) |
Assignment operator. | |
UBool | operator== (const Formattable &other) const |
Equality comparison. | |
UBool | operator!= (const Formattable &other) const |
Equality operator. | |
virtual | ~Formattable () |
Destructor. | |
Formattable * | clone () const |
Clone this object. | |
Type | getType (void) const |
Gets the data type of this Formattable object. | |
UBool | isNumeric () const |
Returns TRUE if the data type of this Formattable object is kDouble, kLong, or kInt64. | |
double | getDouble (void) const |
Gets the double value of this object. | |
double | getDouble (UErrorCode &status) const |
Gets the double value of this object. | |
int32_t | getLong (void) const |
Gets the long value of this object. | |
int32_t | getLong (UErrorCode &status) const |
Gets the long value of this object. | |
int64_t | getInt64 (void) const |
Gets the int64 value of this object. | |
int64_t | getInt64 (UErrorCode &status) const |
Gets the int64 value of this object. | |
UDate | getDate () const |
Gets the Date value of this object. | |
UDate | getDate (UErrorCode &status) const |
Gets the Date value of this object. | |
UnicodeString & | getString (UnicodeString &result) const |
Gets the string value of this object. | |
UnicodeString & | getString (UnicodeString &result, UErrorCode &status) const |
Gets the string value of this object. | |
const UnicodeString & | getString (void) const |
Gets a const reference to the string value of this object. | |
const UnicodeString & | getString (UErrorCode &status) const |
Gets a const reference to the string value of this object. | |
UnicodeString & | getString (void) |
Gets a reference to the string value of this object. | |
UnicodeString & | getString (UErrorCode &status) |
Gets a reference to the string value of this object. | |
const Formattable * | getArray (int32_t &count) const |
Gets the array value and count of this object. | |
const Formattable * | getArray (int32_t &count, UErrorCode &status) const |
Gets the array value and count of this object. | |
Formattable & | operator[] (int32_t index) |
Accesses the specified element in the array value of this Formattable object. | |
const UObject * | getObject () const |
Returns a pointer to the UObject contained within this formattable, or NULL if this object does not contain a UObject. | |
void | setDouble (double d) |
Sets the double value of this object and changes the type to kDouble. | |
void | setLong (int32_t l) |
Sets the long value of this object and changes the type to kLong. | |
void | setInt64 (int64_t ll) |
Sets the int64 value of this object and changes the type to kInt64. | |
void | setDate (UDate d) |
Sets the Date value of this object and changes the type to kDate. | |
void | setString (const UnicodeString &stringToCopy) |
Sets the string value of this object and changes the type to kString. | |
void | setArray (const Formattable *array, int32_t count) |
Sets the array value and count of this object and changes the type to kArray. | |
void | adoptString (UnicodeString *stringToAdopt) |
Sets and adopts the string value and count of this object and changes the type to kArray. | |
void | adoptArray (Formattable *array, int32_t count) |
Sets and adopts the array value and count of this object and changes the type to kArray. | |
void | adoptObject (UObject *objectToAdopt) |
Sets and adopts the UObject value of this object and changes the type to kObject. | |
virtual UClassID | getDynamicClassID () const |
ICU "poor man's RTTI", returns a UClassID for the actual class. | |
int32_t | getLong (UErrorCode *status) const |
Deprecated variant of getLong(UErrorCode&). | |
Static Public Member Functions | |
static UClassID | getStaticClassID () |
ICU "poor man's RTTI", returns a UClassID for this class. |
Formattable is a thin wrapper class which interconverts between the primitive numeric types (double, long, etc.) as well as UDate and UnicodeString.
Internally, a Formattable object is a union of primitive types. As such, it can only store one flavor of data at a time. To determine what flavor of data it contains, use the getType method.
As of ICU 3.0, Formattable may also wrap a UObject pointer, which it owns. This allows an instance of any ICU class to be encapsulated in a Formattable. For legacy reasons and for efficiency, primitive numeric types are still stored directly within a Formattable.
The Formattable class is not suitable for subclassing.
Definition at line 47 of file fmtable.h.
enum Formattable::ISDATE |
This enum is only used to let callers distinguish between the Formattable(UDate) constructor and the Formattable(double) constructor; the compiler cannot distinguish the signatures, since UDate is currently typedefed to be either double or long.
If UDate is changed later to be a bonafide class or struct, then we no longer need this enum.
enum Formattable::Type |
Selector for flavor of data type contained within a Formattable object.
Formattable is a union of several different types, and at any time contains exactly one type.
kDate |
Selector indicating a UDate value.
Use getDate to retrieve the value.
|
kDouble |
Selector indicating a double value.
Use getDouble to retrieve the value.
|
kLong |
Selector indicating a 32-bit integer value.
Use getLong to retrieve the value.
|
kString |
Selector indicating a UnicodeString value.
Use getString to retrieve the value.
|
kArray |
Selector indicating an array of Formattables.
Use getArray to retrieve the value.
|
kInt64 |
Selector indicating a 64-bit integer value.
Use getInt64 to retrieve the value.
|
kObject |
Selector indicating a UObject value.
Use getObject to retrieve the value.
|
Formattable::Formattable | ( | ) |
Creates a Formattable object with a UDate instance.
d | the UDate instance. | |
flag | the flag to indicate this is a date. Always set it to kIsDate |
Formattable::Formattable | ( | double | d | ) |
Formattable::Formattable | ( | int32_t | l | ) |
Formattable::Formattable | ( | int64_t | ll | ) |
Creates a Formattable object with an int64_t number.
ll | the int64_t number. |
Formattable::Formattable | ( | const char * | strToCopy | ) |
Creates a Formattable object with a char string pointer.
Assumes that the char string is null terminated.
strToCopy | the char string. |
Formattable::Formattable | ( | const UnicodeString & | strToCopy | ) |
Creates a Formattable object with a UnicodeString object to copy from.
strToCopy | the UnicodeString string. |
Formattable::Formattable | ( | UnicodeString * | strToAdopt | ) |
Creates a Formattable object with a UnicodeString object to adopt from.
strToAdopt | the UnicodeString string. |
Formattable::Formattable | ( | const Formattable * | arrayToCopy, | |
int32_t | count | |||
) |
Creates a Formattable object with an array of Formattable objects.
arrayToCopy | the Formattable object array. | |
count | the array count. |
Formattable::Formattable | ( | UObject * | objectToAdopt | ) |
Creates a Formattable object that adopts the given UObject.
objectToAdopt | the UObject to set this object to |
Formattable::Formattable | ( | const Formattable & | ) |
virtual Formattable::~Formattable | ( | ) | [virtual] |
void Formattable::adoptArray | ( | Formattable * | array, | |
int32_t | count | |||
) |
Sets and adopts the array value and count of this object and changes the type to kArray.
void Formattable::adoptObject | ( | UObject * | objectToAdopt | ) |
void Formattable::adoptString | ( | UnicodeString * | stringToAdopt | ) |
Sets and adopts the string value and count of this object and changes the type to kArray.
stringToAdopt | the new string value to be adopted. |
Formattable* Formattable::clone | ( | ) | const |
Clone this object.
Clones can be used concurrently in multiple threads. If an error occurs, then NULL is returned. The caller must delete the clone.
const Formattable* Formattable::getArray | ( | int32_t & | count, | |
UErrorCode & | status | |||
) | const |
Gets the array value and count of this object.
If the type is not an array, status is set to U_INVALID_FORMAT_ERROR, count is set to 0, and the result is NULL.
count | fill-in with the count of this object. | |
status | the error code. |
const Formattable* Formattable::getArray | ( | int32_t & | count | ) | const [inline] |
UDate Formattable::getDate | ( | UErrorCode & | status | ) | const [inline] |
Gets the Date value of this object.
If the type is not a date, status is set to U_INVALID_FORMAT_ERROR and the return value is undefined.
status | the error code. |
Definition at line 563 of file fmtable.h.
References kDate, U_INVALID_FORMAT_ERROR, and U_SUCCESS.
UDate Formattable::getDate | ( | ) | const [inline] |
double Formattable::getDouble | ( | UErrorCode & | status | ) | const |
Gets the double value of this object.
If this object is of type long or int64 then a casting conversion is peformed, with possible loss of precision. If the type is kObject and the object is a Measure, then the result of getNumber().getDouble(status) is returned. If this object is neither a numeric type nor a Measure, then 0 is returned and the status is set to U_INVALID_FORMAT_ERROR.
status | the error code |
double Formattable::getDouble | ( | void | ) | const [inline] |
virtual UClassID Formattable::getDynamicClassID | ( | ) | const [virtual] |
int64_t Formattable::getInt64 | ( | UErrorCode & | status | ) | const |
Gets the int64 value of this object.
If this object is of type kDouble and the magnitude is too large to fit in an int64, then the maximum or minimum int64 value, as appropriate, is returned and the status is set to U_INVALID_FORMAT_ERROR. If the magnitude fits in an int64, then a casting conversion is peformed, with truncation of any fractional part. If the type is kObject and the object is a Measure, then the result of getNumber().getDouble(status) is returned. If this object is neither a numeric type nor a Measure, then 0 is returned and the status is set to U_INVALID_FORMAT_ERROR.
status | the error code |
int64_t Formattable::getInt64 | ( | void | ) | const [inline] |
int32_t Formattable::getLong | ( | UErrorCode * | status | ) | const [inline] |
Deprecated variant of getLong(UErrorCode&).
status | the error code |
Definition at line 581 of file fmtable.h.
References getLong().
int32_t Formattable::getLong | ( | UErrorCode & | status | ) | const |
Gets the long value of this object.
If the magnitude is too large to fit in a long, then the maximum or minimum long value, as appropriate, is returned and the status is set to U_INVALID_FORMAT_ERROR. If this object is of type kInt64 and it fits within a long, then no precision is lost. If it is of type kDouble, then a casting conversion is peformed, with truncation of any fractional part. If the type is kObject and the object is a Measure, then the result of getNumber().getLong(status) is returned. If this object is neither a numeric type nor a Measure, then 0 is returned and the status is set to U_INVALID_FORMAT_ERROR.
status | the error code |
int32_t Formattable::getLong | ( | void | ) | const [inline] |
const UObject* Formattable::getObject | ( | ) | const |
static UClassID Formattable::getStaticClassID | ( | ) | [static] |
UnicodeString& Formattable::getString | ( | UErrorCode & | status | ) |
Gets a reference to the string value of this object.
If the type is not a string, status is set to U_INVALID_FORMAT_ERROR and the result is a bogus string.
status | the error code. |
UnicodeString & Formattable::getString | ( | void | ) | [inline] |
const UnicodeString& Formattable::getString | ( | UErrorCode & | status | ) | const |
Gets a const reference to the string value of this object.
If the type is not a string, status is set to U_INVALID_FORMAT_ERROR and the result is a bogus string.
status | the error code. |
const UnicodeString & Formattable::getString | ( | void | ) | const [inline] |
UnicodeString& Formattable::getString | ( | UnicodeString & | result, | |
UErrorCode & | status | |||
) | const |
Gets the string value of this object.
If the type is not a string, status is set to U_INVALID_FORMAT_ERROR and a bogus string is returned.
result | Output param to receive the Date value of this object. | |
status | the error code. |
UnicodeString& Formattable::getString | ( | UnicodeString & | result | ) | const [inline] |
Type Formattable::getType | ( | void | ) | const |
Gets the data type of this Formattable object.
UBool Formattable::isNumeric | ( | ) | const |
Returns TRUE if the data type of this Formattable object is kDouble, kLong, or kInt64.
UBool Formattable::operator!= | ( | const Formattable & | other | ) | const [inline] |
Formattable& Formattable::operator= | ( | const Formattable & | rhs | ) |
Assignment operator.
rhs | The Formattable object to copy into this object. |
UBool Formattable::operator== | ( | const Formattable & | other | ) | const |
Equality comparison.
other | the object to be compared with. |
Formattable& Formattable::operator[] | ( | int32_t | index | ) | [inline] |
Accesses the specified element in the array value of this Formattable object.
If this object is not of type kArray then the result is undefined.
index | the specified index. |
Definition at line 433 of file fmtable.h.
References fArrayAndCount.
void Formattable::setArray | ( | const Formattable * | array, | |
int32_t | count | |||
) |
Sets the array value and count of this object and changes the type to kArray.
array | the array value. | |
count | the number of array elements to be copied. |
void Formattable::setDate | ( | UDate | d | ) |
Sets the Date value of this object and changes the type to kDate.
d | the new Date value to be set. |
void Formattable::setDouble | ( | double | d | ) |
Sets the double value of this object and changes the type to kDouble.
d | the new double value to be set. |
void Formattable::setInt64 | ( | int64_t | ll | ) |
Sets the int64 value of this object and changes the type to kInt64.
ll | the new int64 value to be set. |
void Formattable::setLong | ( | int32_t | l | ) |
Sets the long value of this object and changes the type to kLong.
l | the new long value to be set. |
void Formattable::setString | ( | const UnicodeString & | stringToCopy | ) |
Sets the string value of this object and changes the type to kString.
stringToCopy | the new string value to be set. |