private void |
ParsedDecimal.appendFraction(int zeroCount,
int startIdx,
ParsedDecimal.FormatOptions opts) |
Appends the fractional component of the number to the current output buffer.
|
private int |
ParsedDecimal.appendWhole(int wholeCount,
ParsedDecimal.FormatOptions opts) |
Appends the whole number portion of this value to the output buffer.
|
private int |
ParsedDecimal.appendWholeGrouped(int wholeCount,
ParsedDecimal.FormatOptions opts) |
Appends the whole number portion of this value to the output buffer, adding thousands
separators as needed.
|
private int |
ParsedDecimal.getDigitStringSize(int decimalPos,
ParsedDecimal.FormatOptions opts) |
Gets the number of characters required for the digit portion of a string representation of
this value.
|
private int |
ParsedDecimal.getPlainStringSize(int decimalPos,
ParsedDecimal.FormatOptions opts) |
Gets the number of characters required to create a plain format representation
of this value.
|
private boolean |
ParsedDecimal.shouldIncludeExponent(int targetExponent,
ParsedDecimal.FormatOptions opts) |
Returns true if a formatted string with the given target exponent should include
the exponent field.
|
private boolean |
ParsedDecimal.shouldIncludeMinus(ParsedDecimal.FormatOptions opts) |
Returns true if formatted strings should include the minus sign, considering
the value of this instance and the given format options.
|
java.lang.String |
ParsedDecimal.toEngineeringString(ParsedDecimal.FormatOptions opts) |
Returns a string representation of this value in engineering notation.
|
java.lang.String |
ParsedDecimal.toPlainString(ParsedDecimal.FormatOptions opts) |
Returns a string representation of this value with no exponent field.
|
private java.lang.String |
ParsedDecimal.toScientificString(int decimalPos,
ParsedDecimal.FormatOptions opts) |
Returns a string representation of the value in scientific notation using the
given decimal point position.
|
java.lang.String |
ParsedDecimal.toScientificString(ParsedDecimal.FormatOptions opts) |
Returns a string representation of this value in scientific notation.
|