BindingPropertyIdWithDefaultValue

class BindingPropertyIdWithDefaultValue<T>(value: T)

Author

skydoves (Jaewoong Eum)

A delegate class for holding value and notifying changed value on a property.

Parameters

value

A default value should be initialized.

Constructors

BindingPropertyIdWithDefaultValue
Link copied to clipboard
fun <T> BindingPropertyIdWithDefaultValue(value: T)
A default value should be initialized.

Functions

equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
getValue
Link copied to clipboard
operator fun getValue(bindingObservable: BindingObservable, property: KProperty<*>): T
hashCode
Link copied to clipboard
open fun hashCode(): Int
setValue
Link copied to clipboard
operator fun setValue(bindingObservable: BindingObservable, property: KProperty<*>, value: T)
toString
Link copied to clipboard
open fun toString(): String