/** * Format the mid value * * @return Mid value formatted */ public String formatMid() { return Misc.format(getMid()); }
/** * Format the max value * * @return Max value formatted */ public String formatMax() { return Misc.format(max); }
/** * Format the min value * * @return Min value formatted */ public String formatMin() { return Misc.format(min); }