Package me.datafox.dfxengine.text.suffix
Class NamedSuffixFormatter
java.lang.Object
me.datafox.dfxengine.text.suffix.NamedSuffixFormatter
- All Implemented Interfaces:
Comparable<Handled>
,Handled
,NumberSuffixFormatter
A
NumberSuffixFormatter
that generates a suffix based on an array of suffixes and an interval, configured
with SUFFIXES
and INTERVAL
. The suffix with an index of the exponent scale of the number divided by
the interval will be used. If the exponent scale is negative or the calculated index is out of bounds, the number is
instead formatted with TextFactory.getDefaultNumberSuffixFormatter()
. All provided preset suffixes
(SI
, SHORT
and LONG
use the default interval of 3
. This class is designed to be
used with the Injector
.-
Nested Class Summary
Nested classes/interfaces inherited from interface me.datafox.dfxengine.text.api.NumberSuffixFormatter
NumberSuffixFormatter.Output
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ConfigurationKey
<Integer> Interval to be used between suffixes.static final String[]
Array of abbreviated names of the long scale powers of 3 to be used as number suffixes.static final String[]
Array of abbreviated names of the short scale powers of 3 to be used as number suffixes.static final String[]
Array of SI unit prefixes to be used as number suffixes.static final ConfigurationKey
<String[]> Array of suffixes to be used. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionformat
(BigDecimal number, TextFactory factory, TextConfiguration configuration) boolean
-
Field Details
-
SI
Array of SI unit prefixes to be used as number suffixes. -
SHORT
Array of abbreviated names of the short scale powers of 3 to be used as number suffixes. -
LONG
Array of abbreviated names of the long scale powers of 3 to be used as number suffixes. -
SUFFIXES
Array of suffixes to be used. The default value isSHORT
. -
INTERVAL
Interval to be used between suffixes. The default value is3
.
-
-
Constructor Details
-
NamedSuffixFormatter
- Parameters:
logger
-Logger
for this formatterhandles
-TextHandles
to be used for this formatter'sHandle
-
-
Method Details
-
format
public NumberSuffixFormatter.Output format(BigDecimal number, TextFactory factory, TextConfiguration configuration) - Specified by:
format
in interfaceNumberSuffixFormatter
- Parameters:
number
- number to formatfactory
-TextFactory
for formattingconfiguration
-TextConfiguration
for formatting- Returns:
NumberSuffixFormatter.Output
containing the scaled number and a suffix, or theNumberSuffixFormatter.Output
ofTextFactory.getDefaultNumberSuffixFormatter()
if the number cannot be formatted by this formatter
-
isInfinite
public boolean isInfinite()- Specified by:
isInfinite
in interfaceNumberSuffixFormatter
- Returns:
true
if this formatter can format anyBigDecimal
number. Always returnsfalse
-