Package com.ibm.icu.number
Class FormattedNumberRange
- java.lang.Object
-
- com.ibm.icu.number.FormattedNumberRange
-
- All Implemented Interfaces:
FormattedValue,java.lang.CharSequence
public class FormattedNumberRange extends java.lang.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
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <A extends java.lang.Appendable>
AappendTo(A appendable)Appends the formatted string to an Appendable.charcharAt(int index)booleanequals(java.lang.Object other)java.math.BigDecimalgetFirstBigDecimal()Export the first formatted number as a BigDecimal.NumberRangeFormatter.RangeIdentityResultgetIdentityResult()Returns whether the pair of numbers was successfully formatted as a range or whether an identity fallback was used.java.math.BigDecimalgetSecondBigDecimal()Export the second formatted number as a BigDecimal.inthashCode()intlength()booleannextFieldPosition(java.text.FieldPosition fieldPosition)Determines the start (inclusive) and end (exclusive) indices of the next occurrence of the given field in the output string.booleannextPosition(ConstrainedFieldPosition cfpos)Iterates over field positions in the FormattedValue.java.lang.CharSequencesubSequence(int start, int end)java.text.AttributedCharacterIteratortoCharacterIterator()Exports the formatted number as an AttributedCharacterIterator.java.lang.StringtoString()Returns the formatted string as a Java String.
-
-
-
Method Detail
-
toString
public java.lang.String toString()
Returns the formatted string as a Java String. Consider usingFormattedValue.appendTo(A)for greater efficiency.- Specified by:
toStringin interfacejava.lang.CharSequence- Specified by:
toStringin interfaceFormattedValue- Overrides:
toStringin classjava.lang.Object- Returns:
- The formatted string.
-
appendTo
public <A extends java.lang.Appendable> A appendTo(A appendable)
Appends the formatted string to an Appendable.If an IOException occurs when appending to the Appendable, an unchecked
ICUUncheckedIOExceptionis thrown instead.- Specified by:
appendToin interfaceFormattedValue- Parameters:
appendable- The Appendable to which to append the string output.- Returns:
- The same Appendable, for chaining.
-
charAt
public char charAt(int index)
- Specified by:
charAtin interfacejava.lang.CharSequence
-
length
public int length()
- Specified by:
lengthin interfacejava.lang.CharSequence
-
subSequence
public java.lang.CharSequence subSequence(int start, int end)- Specified by:
subSequencein interfacejava.lang.CharSequence
-
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:ConstrainableFieldPosition cfpos = new ConstrainableFieldPosition(); while (fmtval.nextPosition(cfpos)) { // handle the field position; get information from cfpos }- Specified by:
nextPositionin interfaceFormattedValue- Parameters:
cfpos- The object used for iteration state. This can provide constraints to iterate over only one specific field; seeConstrainedFieldPosition.constrainField(java.text.Format.Field).- Returns:
- true if a new occurrence of the field was found; false otherwise.
-
nextFieldPosition
public boolean nextFieldPosition(java.text.FieldPosition fieldPosition)
Determines the start (inclusive) and end (exclusive) indices of the next occurrence of the given field in the output string. This allows you to determine the locations of, for example, the integer part, fraction part, or symbols.If both sides of the range have the same field, the field will occur twice, once before the range separator and once after the range separator, if applicable.
If a field occurs just once, calling this method will find that occurrence and return it. If a field occurs multiple times, this method may be called repeatedly with the following pattern:
FieldPosition fpos = new FieldPosition(NumberFormat.Field.INTEGER); while (formattedNumberRange.nextFieldPosition(fpos, status)) { // do something with fpos. }This method is useful if you know which field to query. If you want all available field position information, use
toCharacterIterator().- Parameters:
fieldPosition- Input+output variable. SeeFormattedNumber.nextFieldPosition(FieldPosition).- Returns:
- true if a new occurrence of the field was found; false otherwise.
- See Also:
NumberFormat.Field,NumberRangeFormatter
-
toCharacterIterator
public java.text.AttributedCharacterIterator toCharacterIterator()
Exports the formatted number as an AttributedCharacterIterator.Consider using
FormattedValue.nextPosition(com.ibm.icu.text.ConstrainedFieldPosition)if you are trying to get field information.- Specified by:
toCharacterIteratorin interfaceFormattedValue- Returns:
- An AttributedCharacterIterator containing full field information.
-
getFirstBigDecimal
public java.math.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()
-
getSecondBigDecimal
public java.math.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()
-
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
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
-