Class SplittingNumberFormatter

java.lang.Object
me.datafox.dfxengine.text.formatter.SplittingNumberFormatter
All Implemented Interfaces:
Comparable<Handled>, Handled, NumberFormatter

public class SplittingNumberFormatter extends Object implements NumberFormatter

A NumberFormatter that splits a number into multiple parts in order of magnitude and outputs them in a list. The most common use case is formatting a period of time. A SplittingNumberFormatter.Split consists of a BigDecimal multiplier and a singular and plural forms of a suffix. Splits are stored in an array and configured with SPLITS. The array must have the splits in ascending order based on the multiplier, and the first split is recommended (but not required) to be BigDecimal.ONE.

Each part of the output will be formatted by a different NumberFormatter which can be configured with FORMATTER. The least significant part of the output can be in decimal form or rounded down, configured with ROUND_SMALLEST. When formatting the parts either ConfigurationKeys.DELIMITER, or ConfigurationKeys.LIST_DELIMITER and ConfigurationKeys.LIST_LAST_DELIMITER can be used, configured with USE_LIST_DELIMITER.