maybeOf

fun <T> maybeOf(value: T): Maybe<T>

Returns a Maybe that emits the specified value. The value is emitted even if it is null.

Please refer to the corresponding RxJava document.