Returns a String object representing this Integer's value. The value is converted to signed decimal representation and returned as a string, exactly as if the integer value were given as an argument to the method.
()
| 265 | * method. |
| 266 | */ |
| 267 | public java.lang.String toString(){ |
| 268 | return toString(value); |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * Returns a new String object representing the specified integer. The argument is converted to signed decimal representation and returned as a string, exactly as if the argument and radix 10 were given as arguments to the |
no outgoing calls