Nothing

The Observable does not have a result.

Parameters

T

the type of Value that corresponds to this empty result.

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
open override val valueOrNull: T? = null

The value of T or null if this result is Nothing.

Functions

Link copied to clipboard

Casts an ObservableOptional to an ObservableOptional its subtype R or returns defaultValue if no such casting is possible.

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open operator override fun getValue(thisRef: Any?, property: KProperty<*>): T?
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
inline fun <R : T, T> ObservableOptional<T>.resultValueOrDefault(defaultValue: R): R

Casts the value of an ObservableOptional to its subtype R or returns defaultValue if no such casting is possible.

Link copied to clipboard
open override fun toString(): String