The
toArray() method of
Longs Class in the Guava library is used to convert the long values, passed as the parameter to this method, into a Long Array. These long values are passed as a Collection to this method. This method returns a Long array.
Syntax:
public static long[] toArray(Collection<? extends Number> collection)
Parameters: This method accepts a mandatory parameter
collection which is the collection of long values to be converted in to a Long array.
Return Value: This method returns a long array containing the same values as a collection, in the same order.
Exceptions: This method throws
NullPointerException if the passed collection or any of its elements is null.
Below programs illustrate the use of toArray() method:
Example 1 :
Example 2 :