Method Summary |
|
final public static Object | clone(Object ary) Clones an array. |
final public static Object | concat(Object ary, Object ary1) Concat the two specified array. |
final public static Object | duplicate(Object ary, int jb, int je) Duplicates the specified array. |
final public static Object | duplicate(Object ary) Duplicates the specified array. |
final public static Object | resize(Object ary, int size) Resizes the specified array. |
final public static Object | shrink(Object ary, int jb, int je) Shrink the specified array. |
final public static String | toHexString(byte[] array) Returns the hex String representation of a byte array without prefix 0x. |
final public static String | toOctalString(byte[] array, String prefix) Returns the octal String representation of a byte array with optional
prefix. |
final public static String | toString(Object[] array) Converts an array to a readable string (for debugging purpose). |
final public static String | toString(int[] array) Converts an array of int to a readable string (for debugging purpose). |
final public static String | toString(long[] array) Converts an array of long to a readable string (for debugging purpose). |
final public static String | toString(short[] array) Converts an array of short to a readable string (for debugging purpose). |
final public static String | toString(byte[] array) Converts an array of byte to a readable string (for debugging purpose). |
final public static String | toString(char[] array) Converts an array of char to a readable string (for debugging purpose). |
final public static String | toString(boolean[] array) Converts an array of boolean to a readable string (for debugging purpose). |
final public static String | toString(float[] array) Converts an array of float to a readable string (for debugging purpose). |
final public static String | toString(double[] array) Converts an array of char to a readable string (for debugging purpose). |