2015-09-07 11:44:36 -06:00
|
|
|
|
// com/mindviewinc/util/PPrint.java
|
2015-06-15 17:47:35 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
|
|
|
|
// Pretty-printer for collections
|
|
|
|
|
package com.mindviewinc.util;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
public class PPrint {
|
|
|
|
|
public static String pformat(Collection<?> c) {
|
|
|
|
|
if(c.isEmpty()) return "[]";
|
|
|
|
|
StringBuilder result = new StringBuilder("[");
|
|
|
|
|
for(Object elem : c) {
|
|
|
|
|
if(c.size() != 1)
|
|
|
|
|
result.append("\n ");
|
|
|
|
|
result.append(elem);
|
|
|
|
|
}
|
|
|
|
|
if(c.size() != 1)
|
|
|
|
|
result.append("\n");
|
|
|
|
|
result.append("]");
|
|
|
|
|
return result.toString();
|
|
|
|
|
}
|
|
|
|
|
public static void pprint(Collection<?> c) {
|
|
|
|
|
System.out.println(pformat(c));
|
|
|
|
|
}
|
|
|
|
|
public static void pprint(Object[] c) {
|
|
|
|
|
System.out.println(pformat(Arrays.asList(c)));
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|