Class FormattedMessage
java.lang.Object
org.graalvm.shadowed.com.ibm.icu.message2.FormattedMessage
- All Implemented Interfaces:
CharSequence,FormattedValue
Deprecated.
This API is for ICU internal use only.
Not yet implemented: The result of a message formatting operation.
This contains information about where the various fields and placeholders ended up in the final result.
This class allows the result to be exported in several data types,
including a String, AttributedCharacterIterator, more (TBD).
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<A extends Appendable>
AappendTo(A appendable) Deprecated.This API is for ICU internal use only.charcharAt(int index) Deprecated.This API is for ICU internal use only.intlength()Deprecated.This API is for ICU internal use only.booleanDeprecated.This API is for ICU internal use only.subSequence(int start, int end) Deprecated.This API is for ICU internal use only.Deprecated.This API is for ICU internal use only.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.CharSequence
chars, codePoints, isEmptyMethods inherited from interface org.graalvm.shadowed.com.ibm.icu.text.FormattedValue
toString
-
Constructor Details
-
FormattedMessage
Deprecated.This API is for ICU internal use only.Not yet implemented.
-
-
Method Details
-
length
Deprecated.This API is for ICU internal use only.Not yet implemented.- Specified by:
lengthin interfaceCharSequence
-
charAt
Deprecated.This API is for ICU internal use only.Not yet implemented.- Specified by:
charAtin interfaceCharSequence
-
subSequence
Deprecated.This API is for ICU internal use only.Not yet implemented.- Specified by:
subSequencein interfaceCharSequence
-
appendTo
Deprecated.This API is for ICU internal use only.Not yet implemented. 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.
-
nextPosition
Deprecated.This API is for ICU internal use only.Not yet implemented. 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:
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.
-
toCharacterIterator
Deprecated.This API is for ICU internal use only.Not yet implemented. Exports the formatted number as an AttributedCharacterIterator.Consider using
FormattedValue.nextPosition(org.graalvm.shadowed.com.ibm.icu.text.ConstrainedFieldPosition)if you are trying to get field information.- Specified by:
toCharacterIteratorin interfaceFormattedValue- Returns:
- An AttributedCharacterIterator containing full field information.
-