append
Appends the given String to this Builder.
Return
This Builder instance.
Parameters
The text to append.
Appends text to this Builder if non-null, and returns this Builder.
If text is an OudsAnnotatedString, all spans and annotations will be copied over as well. No other subtypes of CharSequence will be treated specially. For example, any platform-specific types, such as SpannedString on Android, will only have their text copied and any other information held in the sequence, such as Android Spans, will be dropped.
Return
This Builder instance.
Parameters
The text to append.
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 OudsAnnotatedString, 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. For example, any platform-specific types, such as SpannedString on Android, will only have their text copied and any other information held in the sequence, such as Android Spans, will be dropped.
Return
This Builder instance.
Parameters
The text to append.
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 String to this Builder.
Parameters
The text to append.