Class NumberConverter

java.lang.Object
org.apache.fop.complexscripts.util.NumberConverter

public class NumberConverter extends Object

Implementation of Number to String Conversion algorithm specified by XSL Transformations (XSLT) Version 2.0, W3C Recommendation, 23 January 2007.

This algorithm differs from that specified in XSLT 1.0 in the following ways:

  • input numbers are greater than or equal to zero rather than greater than zero;
  • introduces format tokens { w, W, Ww };
  • introduces ordinal parameter to generate ordinal numbers;

Implementation Defaults and Limitations

  • If language parameter is unspecified (null or empty string), then the value of DEFAULT_LANGUAGE is used, which is defined below as "eng" (English).
  • Only English, French, and Spanish word numerals are supported, and only if less than one trillion (1,000,000,000,000).
  • Ordinal word numerals are supported for French and Spanish only when less than or equal to ten (10).

Implementation Notes

  • In order to handle format tokens outside the Unicode BMP, all processing is done in Unicode Scalar Values represented with Integer and Integer[] types. Without affecting behavior, this may be subsequently optimized to use int and int[] types.
  • In order to communicate various sub-parameters, including ordinalization, a features is employed, which consists of comma separated name and optional value tokens, where name and value are separated by an equals '=' sign.
  • Ordinal numbers are selected by specifying a word based format token in combination with a 'ordinal' feature with no value, in which case the features 'male' and 'female' may be used to specify gender for gender sensitive languages. For example, the feature string "ordinal,female" selects female ordinals.

This work was originally authored by Glenn Adams (gadams@apache.org).

  • Field Details

    • LETTER_VALUE_ALPHABETIC

      public static final int LETTER_VALUE_ALPHABETIC
      alphabetical
      See Also:
    • LETTER_VALUE_TRADITIONAL

      public static final int LETTER_VALUE_TRADITIONAL
      traditional
      See Also:
  • Constructor Details

    • NumberConverter

      public NumberConverter(String format, int groupingSeparator, int groupingSize, int letterValue, String features, String language, String country) throws IllegalArgumentException
      Construct parameterized number converter.
      Parameters:
      format - format for the page number (may be null or empty, which is treated as null)
      groupingSeparator - grouping separator (if zero, then no grouping separator applies)
      groupingSize - grouping size (if zero or negative, then no grouping size applies)
      letterValue - letter value (must be one of the above letter value enumeration values)
      features - features (feature sub-parameters)
      language - (may be null or empty, which is treated as null)
      country - (may be null or empty, which is treated as null)
      Throws:
      IllegalArgumentException - if format is not a valid UTF-16 string (e.g., has unpaired surrogate)
  • Method Details

    • convert

      public String convert(long number)
      Convert a number to string according to conversion parameters.
      Parameters:
      number - number to conver
      Returns:
      string representing converted number
    • convert

      public String convert(List<Long> numbers)
      Convert list of numbers to string according to conversion parameters.
      Parameters:
      numbers - list of numbers to convert
      Returns:
      string representing converted list of numbers