Class FormattedNumberRange

  • All Implemented Interfaces:
    FormattedValue, CharSequence

    public class FormattedNumberRange
    extends Object
    implements FormattedValue
    The result of a number range formatting operation. This class allows the result to be exported in several data types, including a String, an AttributedCharacterIterator, and a BigDecimal. Instances of this class are immutable and thread-safe.
    Author:
    sffc
    See Also:
    NumberRangeFormatter
    Status:
    Stable ICU 63.
    • Method Detail

      • appendTo

        public <A extends Appendable> A appendTo​(A appendable)
        Appends the formatted string to an Appendable.

        If an IOException occurs when appending to the Appendable, an unchecked ICUUncheckedIOException is thrown instead.

        Specified by:
        appendTo in interface FormattedValue
        Parameters:
        appendable - The Appendable to which to append the string output.
        Returns:
        The same Appendable, for chaining.
        Status:
        Stable ICU 63.
      • charAt

        public char charAt​(int index)
        Specified by:
        charAt in interface CharSequence
        Status:
        Stable ICU 64.
      • length

        public int length()
        Specified by:
        length in interface CharSequence
        Status:
        Stable ICU 64.
      • nextPosition

        public boolean nextPosition​(ConstrainedFieldPosition cfpos)
        Iterates over field positions in the FormattedValue. This lets you determine the position of specific types of substrings, like a month or a decimal separator. To loop over all field positions:
             ConstrainedFieldPosition cfpos = new ConstrainedFieldPosition();
             while (fmtval.nextPosition(cfpos)) {
                 // handle the field position; get information from cfpos
             }
         
        Specified by:
        nextPosition in interface FormattedValue
        Parameters:
        cfpos - The object used for iteration state. This can provide constraints to iterate over only one specific field; see ConstrainedFieldPosition.constrainField(java.text.Format.Field).
        Returns:
        true if a new occurrence of the field was found; false otherwise.
        Status:
        Stable ICU 64.
      • getFirstBigDecimal

        public BigDecimal getFirstBigDecimal()
        Export the first formatted number as a BigDecimal. This endpoint is useful for obtaining the exact number being printed after scaling and rounding have been applied by the number range formatting pipeline.
        Returns:
        A BigDecimal representation of the first formatted number.
        See Also:
        NumberRangeFormatter, getSecondBigDecimal()
        Status:
        Stable ICU 63.
      • getSecondBigDecimal

        public BigDecimal getSecondBigDecimal()
        Export the second formatted number as a BigDecimal. This endpoint is useful for obtaining the exact number being printed after scaling and rounding have been applied by the number range formatting pipeline.
        Returns:
        A BigDecimal representation of the second formatted number.
        See Also:
        NumberRangeFormatter, getFirstBigDecimal()
        Status:
        Stable ICU 63.
      • getIdentityResult

        public NumberRangeFormatter.RangeIdentityResult getIdentityResult()
        Returns whether the pair of numbers was successfully formatted as a range or whether an identity fallback was used. For example, if the first and second number were the same either before or after rounding occurred, an identity fallback was used.
        Returns:
        A RangeIdentityType indicating the resulting identity situation in the formatted number range.
        See Also:
        NumberRangeFormatter, NumberRangeFormatter.RangeIdentityFallback
        Status:
        Stable ICU 63.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
        Status:
        Stable ICU 63.
      • equals

        public boolean equals​(Object other)
        Overrides:
        equals in class Object
        Status:
        Stable ICU 63.
      • getFirstFixedDecimal

        @Deprecated
        public PluralRules.IFixedDecimal getFirstFixedDecimal()
        Deprecated.
        This API is ICU internal only.
        Status:
        Internal. This API is ICU internal only.
      • getSecondFixedDecimal

        @Deprecated
        public PluralRules.IFixedDecimal getSecondFixedDecimal()
        Deprecated.
        This API is ICU internal only.
        Status:
        Internal. This API is ICU internal only.