Class Output
- java.lang.Object
-
- de.julielab.jcore.ae.coordbaseline.tools.Output
-
public class Output extends Object
- Author:
- lichtenwald This class contains methods which are used to output some data and hence are useful for debugging purposes
-
-
Constructor Summary
Constructors Constructor Description Output()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidbooleanArray(boolean[] array)This method is used to simply output a boolean array to the console for debugging purposesstatic voidStringArrayList(ArrayList<String> list)This method is used to simply output a string array list to the console for debugging purposes
-
-
-
Method Detail
-
StringArrayList
public static void StringArrayList(ArrayList<String> list)
This method is used to simply output a string array list to the console for debugging purposes- Parameters:
list- ArrayList which elements will be output to the console
-
booleanArray
public static void booleanArray(boolean[] array)
This method is used to simply output a boolean array to the console for debugging purposes- Parameters:
array- boolean array which elements will be output to the console
-
-