for (final Option option : validOptions) {
final String name = option.name().toLowerCase(Locale.US);
table.append(" ").append(Option.PREFIX).append(name);
table.nextColumn();
table.append(options.getString(name));
table.nextLine();
}
table.flush();
} catch (IOException e) {
throw new AssertionError(e); // Should never happen, because we are writing to a PrintWriter.
}