Returns a String object representing this Long's value. The long integer value represented by this Long object is converted to signed decimal representation and returned as a string, exactly as if the long value were given as an argument to the method that takes one argument.
()
| 174 | * method that takes one argument. |
| 175 | */ |
| 176 | public java.lang.String toString(){ |
| 177 | return toString(value); |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * 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 the radix 10 were given as arguments to the |
no outgoing calls
no test coverage detected