#include <IntegerWrapper.h>
Static Public Member Functions | |
| static int | parseInt (const string &s) throw (NumberFormatException) |
| A collection of static methods to perform conversions between strings and integer values. | |
| static string | toString (int i) |
| Encode an integer value into its string representation. | |
Static Public Attributes | |
| static const int | MIN_VALUE |
| The minimum value for an integer. | |
| static const int | MAX_VALUE |
| The maximum value for an integer. | |
Definition at line 36 of file IntegerWrapper.h.
| static int asdm::Integer::parseInt | ( | const string & | s | ) | throw (NumberFormatException) [static] |
A collection of static methods to perform conversions between strings and integer values.
Parse a string supposed to represent an integer value and returns this value.
| s | the string to parse |
| NumberFormatException. |
| static string asdm::Integer::toString | ( | int | i | ) | [static] |
Encode an integer value into its string representation.
| i | the integer value to be encoded. |
const int asdm::Integer::MAX_VALUE [static] |
The maximum value for an integer.
Definition at line 65 of file IntegerWrapper.h.
const int asdm::Integer::MIN_VALUE [static] |
The minimum value for an integer.
Definition at line 60 of file IntegerWrapper.h.
1.6.1