append
Appends the given String to this Builder.
Parameters
the text to append
Appends text to this Builder if non-null, and returns this Builder.
If text is an AnnotatedString, all spans and annotations will be copied over as well. No other subtypes of CharSequence will be treated specially.
Appends the range of text between start (inclusive) and end (exclusive) to this Builder if non-null, and returns this Builder.
If text is an AnnotatedString, all spans and annotations from text between start and end will be copied over as well. No other subtypes of CharSequence will be treated specially.
Parameters
The index of the first character in text to copy over (inclusive).
The index after the last character in text to copy over (exclusive).
Appends the given AnnotatedString to this Builder.
Parameters
the text to append
Appends the range of text between start (inclusive) and end (exclusive) to this Builder. All spans and annotations from text between start and end will be copied over as well.