String.valueOfLong()

Signature

String valueOfLong (long l)

Domain

action, condition

Description

Returns a String representation of the long passed in.

Parameters

NameTypeDescription
llongA long to get the value of (convert to String).

Returns

TypeDescription
StringA String representation of the long passed in.

Cautions

none

Example


String result = String.valueOfLong (3451112223L);

Result is:
result contains: "3451112223"