public static void main(String[] args) throws Exception {
//System.out.printf("%-8s %-11s %-8s %-11s", "name", "type", "required", "access-type");
SimpleTable t = new SimpleTable(new String[]{"NAME", "TYPE", "REQUIRED", "ACCESS-TYPE", "VALUE"});
t.addLine(new String[]{"name1", "big_integer", "true", "read-write", "12"});
t.addLine(new String[]{"some name", "int", "false", "read-only", null});
System.out.println(t.toString());
}
}