Section.BaseBuilder


protected abstract class Section.BaseBuilder<T : Item?, B>

Known direct subclasses
GridSection.Builder

A builder that constructs GridSection instances.

RowSection.Builder

A builder that constructs RowSection instances.


Generic Section builder that contains the fields that all sections share.

Parameters
<T : Item?>

The Item type that this section contains

<B>

The builder type to return for the builder methods

Summary

Protected constructors

BaseBuilder(section: Section<T!>)

Public functions

B

Adds an item to this section, appending to the existing list of items.

B

Delete all items in this section.

B

Sets the items for this section, overwriting any other previously set items.

B

Sets or clears the optional message to display in this section when there are 0 items added to it.

B

Sets or clears the optional message to display in this section when there are 0 items added to it.

B

Sets or clears the optional title that appears above the items in this section.

B

Sets or clears the optional title that appears above the items in this section.

Protected constructors

BaseBuilder

Added in 1.7.0-beta01
protected BaseBuilder()

BaseBuilder

Added in 1.7.0-beta01
protected BaseBuilder(section: Section<T!>)

Public functions

addItem

Added in 1.7.0-beta01
@CanIgnoreReturnValue
fun addItem(item: T): B

Adds an item to this section, appending to the existing list of items.

clearItems

Added in 1.7.0-beta01
@CanIgnoreReturnValue
fun clearItems(): B

Delete all items in this section.

setItems

Added in 1.7.0-beta01
@CanIgnoreReturnValue
fun setItems(items: (Mutable)List<T!>): B

Sets the items for this section, overwriting any other previously set items.

setNoItemsMessage

Added in 1.7.0-beta01
@CanIgnoreReturnValue
fun setNoItemsMessage(noItemsMessage: CarText?): B

Sets or clears the optional message to display in this section when there are 0 items added to it. If not set, this section will not show any message when there are 0 items. The message must conform to TEXT_ONLY constraints.

setNoItemsMessage

Added in 1.7.0-beta01
@CanIgnoreReturnValue
fun setNoItemsMessage(noItemsMessage: CharSequence?): B

Sets or clears the optional message to display in this section when there are 0 items added to it. If not set, this section will not show any message when there are 0 items. The message must conform to TEXT_ONLY constraints.

setTitle

Added in 1.7.0-beta01
@CanIgnoreReturnValue
fun setTitle(title: CarText?): B

Sets or clears the optional title that appears above the items in this section. If not set, no title shows up. The title must conform to TEXT_ONLY constraints.

setTitle

Added in 1.7.0-beta01
@CanIgnoreReturnValue
fun setTitle(title: CharSequence?): B

Sets or clears the optional title that appears above the items in this section. If not set, no title shows up. The title must conform to TEXT_ONLY constraints.