String.valueOfInt()
Signature
String valueOfInt (int i)
Domain
action, condition, query
Description
Returns a String representation of the int passed in.
Parameters
Name | Type | Description |
i | int | An int to get the value of (convert to String). |
Returns
Type | Description |
String | A String representation of the int passed in. |
Example
String result = String.valueOfInt (345);
Result is:
result contains: "345".