|
| | NameURI (const char *elementName) |
| |
| | NameURI (const char *elementName, const char *description) |
| |
| | Str (const char *str=NULL, size_t length=NO_POS) |
| | char* constructor Unit tests in Str_Test.testConstructorCharStar More...
|
| |
| | Str (const Str &str, const size_t offset=0, size_t count=NO_POS) |
| | copy constructor Unit tests in Str_Test.testCopyConstructor More...
|
| |
| | Str (const bool var) |
| | bool constructor Unit tests in Str_Test.testBoolConstructor More...
|
| |
| | Str (const double var, unsigned int precision=6) |
| | double constructor Unit tests in Str_Test.testDoubleConstructor More...
|
| |
| | Str (const int var, unsigned int radix=10, unsigned int radixOffset=0) |
| | int constructor Unit tests in Str_Test.testIntConstructor More...
|
| |
| | Str (const size_t var, unsigned int radix=16) |
| | size_t constructor Unit tests in Str_Test.testUnsignedIntConstructor More...
|
| |
| virtual | ~Str () |
| | destructor More...
|
| |
| Str & | set (const char *str=NULL, size_t length=NO_POS) |
| |
| Str & | operator= (const char *str) |
| |
| Str & | operator= (const Str &str) |
| |
| Str & | operator= (const double var) |
| |
| Str | substr (const size_t offset, size_t count=NO_POS) const |
| |
| char | operator[] (const size_t index) const |
| |
| Str & | operator+= (const bool str) |
| |
| Str & | operator+= (const unsigned char str) |
| |
| Str & | operator+= (const double str) |
| |
| Str & | operator+= (const int str) |
| |
| Str & | operator+= (const size_t str) |
| |
| Str & | operator+= (const char *str) |
| |
| Str & | operator+= (const Str &str) |
| |
| Str & | append (const Str &str) |
| |
| Str & | append (const char *str, size_t length) |
| |
| Str & | pushBack (const unsigned char str) |
| |
| Str & | operator<< (const bool str) |
| |
| Str & | operator<< (const unsigned char str) |
| |
| Str & | operator<< (const double str) |
| |
| Str & | operator<< (const int str) |
| |
| Str & | operator<< (const size_t str) |
| |
| Str & | operator<< (const char *str) |
| |
| Str & | operator<< (const Str &str) |
| |
| bool | operator!= (const Str &str) const |
| |
| bool | operator!= (const char *str) const |
| |
| int | compare (const Str &str) const |
| |
| int | compare (const char *str) const |
| |
| bool | operator== (const Str &str) const |
| |
| bool | operator== (const char *str) const |
| |
| bool | operator< (const Str &str) const |
| |
| const char * | cStr () const |
| |
| const char * | data () const |
| |
| size_t | length () const |
| |
| size_t | size () const |
| |
| size_t | findLastOf (const unsigned char str) const |
| | returns the position of the specified character in the string, looking from the end of the string towards the beginning. More...
|
| |
| size_t | findLastOf (const char *str) const |
| | returns the position of the specified character string in the string, looking from the end of the string towards the beginning. More...
|
| |
| size_t | find (const unsigned char str, size_t offset=0) const |
| |
| size_t | find (const char *str, size_t offset=0) const |
| |
| size_t | find (const Str &str, size_t offset=0) const |
| |
| bool | startsWith (const char *str, size_t length=NO_POS) const |
| |
| bool | startsWith (const Str &str) const |
| |
| bool | endsWith (const Str &str) const |
| |
| bool | setChar (size_t index, const unsigned char theChar) |
| |
| void | replaceChar (const char replace, const char replaceWith) |
| |
| Str * | split (int &num, const char *splitSpec, size_t length=NO_POS) const |
| |
| Str * | split (int &num, const Str str) const |
| |
| Str | asHex () const |
| | Return a new Str, with a hex representation of each character of this string. More...
|
| |