diff --git a/3.x/javadoc/snapshot/index-all.html b/3.x/javadoc/snapshot/index-all.html index f1e920816f..10f64e92b2 100644 --- a/3.x/javadoc/snapshot/index-all.html +++ b/3.x/javadoc/snapshot/index-all.html @@ -1109,8 +1109,10 @@
Flowable
that emits the items emitted by the current Flowable
, converted to the specified
- type.Flowable
that emits the upstream items while
+ they can be cast via Class.cast(Object)
until the upstream terminates,
+ or until the upstream signals an item which can't be cast,
+ resulting in a ClassCastException
to be signaled to the downstream.Observable
that emits the items emitted by the current Observable
, converted to the specified
- type.Observable
that emits the upstream items while
+ they can be cast via Class.cast(Object)
until the upstream terminates,
+ or until the upstream signals an item which can't be cast,
+ resulting in a ClassCastException
to be signaled to the downstream.<U> @NonNull Flowable<U>
cast(@NonNull Class<U> clazz)
-Flowable
that emits the items emitted by the current Flowable
, converted to the specified
- type.Flowable
that emits the upstream items while
+ they can be cast via Class.cast(Object)
until the upstream terminates,
+ or until the upstream signals an item which can't be cast,
+ resulting in a ClassCastException
to be signaled to the downstream.Flowable
that emits the items emitted by the current Flowable
, converted to the specified
- type.
+Flowable
that emits the upstream items while
+ they can be cast via Class.cast(Object)
until the upstream terminates,
+ or until the upstream signals an item which can't be cast,
+ resulting in a ClassCastException
to be signaled to the downstream.
U
- the output value type cast toclazz
- the target class type that cast
will cast the items emitted by the current Flowable
- into before emitting them from the resulting Flowable
clazz
- the target class to use to try and cast the upstream items intoFlowable
instance<U> @NonNull Observable<U>
cast(@NonNull Class<U> clazz)
-Observable
that emits the items emitted by the current Observable
, converted to the specified
- type.Observable
that emits the upstream items while
+ they can be cast via Class.cast(Object)
until the upstream terminates,
+ or until the upstream signals an item which can't be cast,
+ resulting in a ClassCastException
to be signaled to the downstream.Observable
that emits the items emitted by the current Observable
, converted to the specified
- type.
+Observable
that emits the upstream items while
+ they can be cast via Class.cast(Object)
until the upstream terminates,
+ or until the upstream signals an item which can't be cast,
+ resulting in a ClassCastException
to be signaled to the downstream.
U
- the output value type cast toclazz
- the target class type that cast
will cast the items emitted by the current Observable
- into before emitting them from the resulting Observable
clazz
- the target class to use to try and cast the upstream items intoObservable
instance