table.setAlignment(TableWriter.ALIGN_RIGHT);
Object value = descriptor.getMinimumValue();
if (value != null) {
table.write(formatValue(value));
}
table.nextColumn();
value = descriptor.getMaximumValue();
if (value != null) {
table.write(formatValue(value));
}
table.nextColumn();