public class FormattedOutput
tools to simplify formatted output to a stream
public static FormattedOutput getInstance()
create instance of this class (note that there is no public constructor as this class is a singleton)
public int displayDecimal(java.io.Writer out,
double number,
int width)
print decimal number with a prespecified number of digits after the point
out - output streamnumber - to be printedwidth - number of fraction digitspublic java.lang.String getDecimalString(double number,
int width)
Returns a decimal string representation of a number with constrained width.
public java.lang.String getSFString(kotlin.Array[] numbers,
int sf,
java.lang.String delimiter)
public java.lang.String getSFString(double number,
int sf)
public void displayLabel(java.io.Writer out,
java.lang.String label,
int width)
print label with a prespecified length (label will be shortened or spaces will introduced, if necessary)
out - output streamlabel - label to be printedwidth - desired lengthpublic void displayInteger(java.io.Writer out,
int num,
int maxNum)
print integer, aligned to a reference number, (introducing space at the left side)
out - output streamnum - number to be printedmaxNum - reference numberpublic void displayIntegerWhite(java.io.Writer out,
int maxNum)
print whitespace of length of a string displaying a given integer
out - streammaxNum - numberpublic void multiplePrint(java.io.Writer out,
char c,
int num)
repeatedly print a character
out - output streamc - characternum - number of repeatspublic static java.lang.String space(int size,
char c)
returns of string of a given length of a single character.
size - length of the string requiredc - character