Class EvenLengthNumberFormatter
java.lang.Object
me.datafox.dfxengine.text.formatter.EvenLengthNumberFormatter
- All Implemented Interfaces:
Comparable<Handled>
,Handled
,NumberFormatter
A
NumberFormatter
that formats a number in a natural form and ensures that every output is no longer than an
arbitrary number of characters, configured with LENGTH
, and the minimum absolute exponent when a
NumberSuffixFormatter
will be used can be configured with MIN_EXPONENT
. The minimum exponent must be
smaller than or equal to the length. The output can be configured to be padded with zeros to keep all outputs at the
same length with PAD_ZEROS
. If an output of the desired length cannot be produced, the output will be longer
and a warning will be logged.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ConfigurationKey
<Integer> Number of characters in the output.static final ConfigurationKey
<Integer> Minimum absolute exponent to be formatted with a suffix.static final ConfigurationKey
<Boolean> Iftrue
, the number will be padded with zeros to keep the length of all numbers the same. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionformat
(BigDecimal number, TextFactory factory, TextConfiguration configuration)
-
Field Details
-
LENGTH
Number of characters in the output. It is recommended to use a value of at least7
. The default value is8
. -
MIN_EXPONENT
Minimum absolute exponent to be formatted with a suffix. It must be smaller than or equal toLENGTH
. The default value is3
. -
PAD_ZEROS
Iftrue
, the number will be padded with zeros to keep the length of all numbers the same. Otherwise, the output may be shorter than the configured length. The default value istrue
.
-
-
Constructor Details
-
EvenLengthNumberFormatter
- Parameters:
logger
-Logger
for this formatterhandles
-TextHandles
to be used for this formatter'sHandle
-
-
Method Details
-
format
- Specified by:
format
in interfaceNumberFormatter
- Parameters:
number
- number to be formatterfactory
-TextFactory
for formattingconfiguration
-TextConfiguration
for formatting- Returns:
String
representation of the number- Throws:
TextConfigurationException
- if theTextConfiguration
is not valid for this formatter
-