Android Utililty Methods Array Clone

List of utility methods to do Array Clone

Description

The list of methods to do Array Clone are organized into topic(s).

Method

short[]clone(short[] array)

Clones an array returning a typecast result and handling null.

This method returns null for a null input array.

if (array == null) {
    return null;
return array.clone();