Class DoubleFormat.Builder
- java.lang.Object
-
- org.apache.commons.text.numbers.DoubleFormat.Builder
-
- All Implemented Interfaces:
java.util.function.Supplier<java.util.function.DoubleFunction<java.lang.String>>
- Enclosing class:
- DoubleFormat
public static final class DoubleFormat.Builder extends java.lang.Object implements java.util.function.Supplier<java.util.function.DoubleFunction<java.lang.String>>
Builds configured format functions for standard double format types.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description DoubleFormat.BuilderallowSignedZero(boolean signedZero)Sets the flag determining whether or not the zero string may be returned with the minus sign or if it will always be returned in the positive form.DoubleFormat.BuilderalwaysIncludeExponent(boolean alwaysIncludeExponent)Sets the flag indicating if an exponent value should always be included in the formatted value, even if the exponent value is zero.java.util.function.DoubleFunction<java.lang.String>build()Deprecated.Useget().DoubleFormat.BuilderdecimalSeparator(char decimalSeparator)Sets the decimal separator character, i.e., the character placed between the whole number and fractional portions of the formatted strings.DoubleFormat.Builderdigits(java.lang.String digits)Sets the string containing the digit characters 0-9, in that order.DoubleFormat.BuilderexponentSeparator(java.lang.String exponentSeparator)Sets the exponent separator character, i.e., the string placed between the mantissa and the exponent.DoubleFormat.BuilderformatSymbols(java.text.DecimalFormatSymbols symbols)Configures this instance with the given format symbols.java.util.function.DoubleFunction<java.lang.String>get()Builds a new double format function.DoubleFormat.BuildergroupingSeparator(char groupingSeparator)Sets the character used to separate groups of thousands.DoubleFormat.BuildergroupThousands(boolean groupThousands)If set totrue, thousands will be grouped with thegrouping separator.DoubleFormat.BuilderincludeFractionPlaceholder(boolean fractionPlaceholder)Sets the flag determining whether or not a zero character is added in the fraction position when no fractional value is present.DoubleFormat.Builderinfinity(java.lang.String infinity)Sets the string used to represent infinity.DoubleFormat.BuildermaxPrecision(int maxPrecision)Sets the maximum number of significant decimal digits used in format results.DoubleFormat.BuilderminDecimalExponent(int minDecimalExponent)Sets the minimum decimal exponent for formatted strings.DoubleFormat.BuilderminusSign(char minusSign)Sets the character used as the minus sign.DoubleFormat.Buildernan(java.lang.String nan)Sets the string used to representDouble.NaN.DoubleFormat.BuilderplainFormatMaxDecimalExponent(int plainFormatMaxDecimalExponent)Sets the maximum decimal exponent for numbers formatted as plain decimal strings when using theMIXEDformat type.DoubleFormat.BuilderplainFormatMinDecimalExponent(int plainFormatMinDecimalExponent)Sets the minimum decimal exponent for numbers formatted as plain decimal strings when using theMIXEDformat type.
-
-
-
Method Detail
-
allowSignedZero
public DoubleFormat.Builder allowSignedZero(boolean signedZero)
Sets the flag determining whether or not the zero string may be returned with the minus sign or if it will always be returned in the positive form. For example, if set totrue, the string"-0.0"may be returned for some input numbers. Iffalse, only"0.0"will be returned, regardless of the sign of the input number. The default value istrue.- Parameters:
signedZero- iftrue, the zero string may be returned with a preceding minus sign; iffalse, the zero string will only be returned in its positive form.- Returns:
thisinstance.
-
alwaysIncludeExponent
public DoubleFormat.Builder alwaysIncludeExponent(boolean alwaysIncludeExponent)
Sets the flag indicating if an exponent value should always be included in the formatted value, even if the exponent value is zero. This property only applies to formats that use scientific notation, namelySCIENTIFIC,ENGINEERING, andMIXED. The default value isfalse.- Parameters:
alwaysIncludeExponent- iftrue, exponents will always be included in formatted output even if the exponent value is zero.- Returns:
thisinstance.
-
build
@Deprecated public java.util.function.DoubleFunction<java.lang.String> build()
Deprecated.Useget().Builds a new double format function.- Returns:
- format function
-
decimalSeparator
public DoubleFormat.Builder decimalSeparator(char decimalSeparator)
Sets the decimal separator character, i.e., the character placed between the whole number and fractional portions of the formatted strings. The default value is'.'.- Parameters:
decimalSeparator- decimal separator character.- Returns:
thisinstance.
-
digits
public DoubleFormat.Builder digits(java.lang.String digits)
Sets the string containing the digit characters 0-9, in that order. The default value is the string"0123456789".- Parameters:
digits- string containing the digit characters 0-9.- Returns:
thisinstance.- Throws:
java.lang.NullPointerException- if the argument isnull.java.lang.IllegalArgumentException- if the argument does not have a length of exactly 10.
-
exponentSeparator
public DoubleFormat.Builder exponentSeparator(java.lang.String exponentSeparator)
Sets the exponent separator character, i.e., the string placed between the mantissa and the exponent. The default value is"E", as in"1.2E6".- Parameters:
exponentSeparator- exponent separator string.- Returns:
thisinstance.- Throws:
java.lang.NullPointerException- if the argument isnull.
-
formatSymbols
public DoubleFormat.Builder formatSymbols(java.text.DecimalFormatSymbols symbols)
Configures this instance with the given format symbols. The following values are set:digit charactersdecimal separatorthousands grouping separatorminus signexponent separatorinfinityNaN
zero digitand adding the next 9 consecutive characters.- Parameters:
symbols- format symbols.- Returns:
thisinstance.- Throws:
java.lang.NullPointerException- if the argument isnull.
-
get
public java.util.function.DoubleFunction<java.lang.String> get()
Builds a new double format function.- Specified by:
getin interfacejava.util.function.Supplier<java.util.function.DoubleFunction<java.lang.String>>- Returns:
- a new double format function.
-
groupingSeparator
public DoubleFormat.Builder groupingSeparator(char groupingSeparator)
Sets the character used to separate groups of thousands. Default value is','.- Parameters:
groupingSeparator- character used to separate groups of thousands.- Returns:
thisinstance.- See Also:
groupThousands(boolean)
-
groupThousands
public DoubleFormat.Builder groupThousands(boolean groupThousands)
If set totrue, thousands will be grouped with thegrouping separator. For example, if set totrue, the number1000could be formatted as"1,000". This property only applies to thePLAINformat. Default value isfalse.- Parameters:
groupThousands- iftrue, thousands will be grouped.- Returns:
thisinstance.- See Also:
groupingSeparator(char)
-
includeFractionPlaceholder
public DoubleFormat.Builder includeFractionPlaceholder(boolean fractionPlaceholder)
Sets the flag determining whether or not a zero character is added in the fraction position when no fractional value is present. For example, if set totrue, the number1would be formatted as"1.0". Iffalse, it would be formatted as"1". The default value istrue.- Parameters:
fractionPlaceholder- iftrue, a zero character is placed in the fraction position when no fractional value is present; iffalse, fractional digits are only included when needed.- Returns:
thisinstance.
-
infinity
public DoubleFormat.Builder infinity(java.lang.String infinity)
Sets the string used to represent infinity. For negative infinity, this string is prefixed with theminus sign.- Parameters:
infinity- string used to represent infinity.- Returns:
thisinstance.- Throws:
java.lang.NullPointerException- if the argument isnull.
-
maxPrecision
public DoubleFormat.Builder maxPrecision(int maxPrecision)
Sets the maximum number of significant decimal digits used in format results. A value of0indicates no limit. The default value is0.- Parameters:
maxPrecision- maximum precision.- Returns:
thisinstance.
-
minDecimalExponent
public DoubleFormat.Builder minDecimalExponent(int minDecimalExponent)
Sets the minimum decimal exponent for formatted strings. No digits with an absolute value of less than10minDecimalExponentwill be included in format results. If the number being formatted does not contain any such digits, then zero is returned. For example, ifminDecimalExponentis set to-2and the number3.14159is formatted, the plain format result will be"3.14". If0.001is formatted, then the result is the zero string.- Parameters:
minDecimalExponent- minimum decimal exponent.- Returns:
thisinstance.
-
minusSign
public DoubleFormat.Builder minusSign(char minusSign)
Sets the character used as the minus sign.- Parameters:
minusSign- character to use as the minus sign.- Returns:
thisinstance.
-
nan
public DoubleFormat.Builder nan(java.lang.String nan)
Sets the string used to representDouble.NaN.- Parameters:
nan- string used to representDouble.NaN.- Returns:
thisinstance.- Throws:
java.lang.NullPointerException- if the argument isnull.
-
plainFormatMaxDecimalExponent
public DoubleFormat.Builder plainFormatMaxDecimalExponent(int plainFormatMaxDecimalExponent)
Sets the maximum decimal exponent for numbers formatted as plain decimal strings when using theMIXEDformat type.If the number being formatted has an absolute value less than
10plainFormatMaxDecimalExponent + 1and greater than or equal to10plainFormatMinDecimalExponentafter any necessary rounding, then the formatted result will use thePLAINformat type. Otherwise,SCIENTIFICformat will be used. For example, if this value is set to2, the number999will be formatted as"999.0"while1000will be formatted as"1.0E3".The default value is
6.This value is ignored for formats other than
DoubleFormat.MIXED.- Parameters:
plainFormatMaxDecimalExponent- maximum decimal exponent for values formatted as plain strings when using theMIXEDformat type.- Returns:
thisinstance- See Also:
plainFormatMinDecimalExponent(int)
-
plainFormatMinDecimalExponent
public DoubleFormat.Builder plainFormatMinDecimalExponent(int plainFormatMinDecimalExponent)
Sets the minimum decimal exponent for numbers formatted as plain decimal strings when using theMIXEDformat type.If the number being formatted has an absolute value less than
10plainFormatMaxDecimalExponent + 1and greater than or equal to10plainFormatMinDecimalExponentafter any necessary rounding, then the formatted result will use thePLAINformat type. Otherwise,SCIENTIFICformat will be used. For example, if this value is set to-2, the number0.01will be formatted as"0.01"while0.0099will be formatted as"9.9E-3".The default value is
-3.This value is ignored for formats other than
DoubleFormat.MIXED.- Parameters:
plainFormatMinDecimalExponent- maximum decimal exponent for values formatted as plain strings when using theMIXEDformat type.- Returns:
thisinstance- See Also:
plainFormatMinDecimalExponent(int)
-
-