String.valueOfLong()
Signature
String valueOfLong (long l)
Domain
action, condition, query
Description
Returns a String representation of the long passed in.
Parameters
Name | Type | Description |
l | long | A long to get the value of (convert to String). |
Returns
Type | Description |
String | A String representation of the long passed in. |
Example
String result = String.valueOfLong (3451112223L);
Result is:
result contains: "3451112223".