The toArray() method of Shorts Class in the Guava library is used to convert the short values, passed as the parameter to this method, into a Short Array. These short values are passed as a Collection to this method. This method returns a Short array.
Syntax:
public static short[] toArray(Collection<? extends Number> collection)
Parameters: This method accepts a mandatory parameter collection which is the collection of short values to be converted in to a Short array.
Return Value: This method returns a short 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:
import com.google.common.primitives.Shorts;
import java.util.Arrays;
import java.util.List;
class GFG {
public static void main(String[] args)
{
List<Short> myList
= Arrays.asList(( short ) 1 , ( short ) 2 ,
( short ) 3 , ( short ) 4 , ( short ) 5 );
short [] arr = Shorts.toArray(myList);
System.out.println(Arrays.toString(arr));
}
}
|
Example 2:
import com.google.common.primitives.Shorts;
import java.util.Arrays;
import java.util.List;
class GFG {
public static void main(String[] args)
{
try {
List<Short> myList
= Arrays.asList(( short ) 2 ,
( short ) 4 , null );
short [] arr = Shorts.toArray(myList);
System.out.println(Arrays
.toString(arr));
}
catch (Exception e) {
System.out.println(e);
}
}
}
|
Output:
java.lang.NullPointerException
Reference: https://google.github.io/guava/releases/23.0/api/docs/com/google/common/primitives/Shorts.html#toArray-java.util.Collection-