getValue

inline operator fun <V> ObservableValue<V>.getValue(thisRef: Any?, property: KProperty<*>): V?

Delegated property of this read-only V value, use with by keyword.


inline operator fun ObservableStringValue.getValue(thisRef: Any?, property: KProperty<*>): String?

Delegated property of this read-only String value, use with by keyword.


inline operator fun ObservableBooleanValue.getValue(thisRef: Any?, property: KProperty<*>): Boolean

Delegated property of this read-only Boolean value, use with by keyword.


inline operator fun ObservableDoubleValue.getValue(thisRef: Any?, property: KProperty<*>): Double

Delegated property of this read-only Double value, use with by keyword.


inline operator fun ObservableFloatValue.getValue(thisRef: Any?, property: KProperty<*>): Float

Delegated property of this read-only Float value, use with by keyword.


inline operator fun ObservableLongValue.getValue(thisRef: Any?, property: KProperty<*>): Long

Delegated property of this read-only Long value, use with by keyword.


inline operator fun ObservableIntegerValue.getValue(thisRef: Any?, property: KProperty<*>): Int

Delegated property of this read-only Int value, use with by keyword.