Static Public Member Functions | |
| static< T > List< T > | convertArrayToList (T[] arrayOfObjects) |
| static void | printArray (double[] array) |
| static void | printArray (Object[] array) |
| Prints an array of Objects to console. | |
| static void | printMatrix (Object[][] matrix) |
| Displays a matrix of Objects. | |
| static String | toString (int[] array) |
| static String | toString (Object[] array) |
Definition at line 15 of file ArrayUtils.java.
| static <T> List<T> convertArrayToList | ( | T[] | arrayOfObjects | ) | [static] |
| <T> | type of the objects... | |
| arrayOfObjects | the array we want to convert into the List<T> |
Definition at line 24 of file ArrayUtils.java.
| static void printArray | ( | Object[] | array | ) | [static] |
Prints an array of Objects to console.
| array |
Definition at line 49 of file ArrayUtils.java.
| static void printArray | ( | double[] | array | ) | [static] |
| static void printMatrix | ( | Object | matrix[][] | ) | [static] |
| static String toString | ( | Object[] | array | ) | [static] |
| static String toString | ( | int[] | array | ) | [static] |
| array | turns an array of ints into a String |
Definition at line 88 of file ArrayUtils.java.
1.4.7