FragmentBuilder

interface FragmentBuilder<T, U : FragmentBuilder<T, U>> : Builder<T>

Parameters

T

type of the fragment that will be built

U

type of this builder that is returned by the with...() methods

Functions

build
Link copied to clipboard
common
abstract fun build(): T
Builds an object of type T.
createCopy
Link copied to clipboard
common
abstract fun createCopy(): Builder<T>
Creates a deep copy of this object.
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String
withPosition
Link copied to clipboard
common
abstract fun withPosition(position: Position): U
Aligns the resulting Component positionally, relative to its parent.
abstract fun withPosition(x: Int, y: Int): U
Aligns the resulting Component positionally, relative to its parent.

Inheritors

SelectorBuilder
Link copied to clipboard

Sources

(source)
Link copied to clipboard