List of utility methods to do Array Clone
Clones an array returning a typecast result and handling null.
null
This method returns null for a null input array.
if (array == null) { return null; return array.clone();