append
Appends a string content to this component builder.
Return
this component builder for chaining
Parameters
the string content to append
Appends a component to this component builder.
Return
this component builder for chaining
Parameters
the component to append
Appends any value to this component builder with automatic type conversion. String values are appended as text components, Component values are appended directly, and other types are converted to strings via toString() before appending. Null values are converted to empty strings.
Return
this component builder for chaining
Parameters
the value to append (can be String, Component, or any other type including null)
Extension property to append this string directly to the component builder. Provides a convenient property-style syntax for appending strings.