Class SplittingNumberFormatter.Split
java.lang.Object
me.datafox.dfxengine.text.formatter.SplittingNumberFormatter.Split
- Enclosing class:
SplittingNumberFormatter
Defines a single part to be used with
SplittingNumberFormatter
. Contains a BigDecimal
multiplier
and singular and plural forms of a suffix.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionof
(BigDecimal multiplier, String name) This method uses the name as both singular and plural form.of
(BigDecimal multiplier, String singular, String plural)
-
Constructor Details
-
Split
public Split()
-
-
Method Details
-
of
This method uses the name as both singular and plural form. It does not use aPluralConverter
.- Parameters:
multiplier
-BigDecimal
multiplier for the splitname
- name of the split- Returns:
- new split with the specified parameters
-
of
public static SplittingNumberFormatter.Split of(BigDecimal multiplier, String singular, String plural) - Parameters:
multiplier
-BigDecimal
multiplier for the splitsingular
- name of the split in singular formplural
- name of the split in plural form- Returns:
- new split with the specified parameters
-