6061626364656667686970
if (rows != null) { for (String key : rows.keySet()) { List<String> values = rows.get(key); if (values != null) { for (String value : values) { table.addRow(key, value); } } } } return format(table);
8384858687888990919293
if (rows != null) { for (String key1 : rows.keySet()) { Map<String, String> values = rows.get(key1); if (values != null) { for (String key2 : values.keySet()) { table.addRow(key1, key2, values.get(key2)); } } } } return format(table);