default Single<Boolean> |
Stream.all(Predicate<? super T> predicate) |
default Single<Boolean> |
Stream.any(Predicate<? super T> predicate) |
Single<T> |
RetryWhenBuilderSingle.build() |
default <R> Single<R> |
Stream.collect(Callable<? extends R> factory,
BiConsumer<? super R,? super T> collector) |
default <A,R> Single<R> |
Stream.collect(Collector<T,A,R> collector) |
default <R> Single<R> |
Stream.collect(Collector<T,R> collector) |
default <R> Single<R> |
Stream.composeSingle(Function<? super Stream<T>,? extends Single<? extends R>> transformer) |
default Single<Boolean> |
Stream.contains(T value) |
default Single<Long> |
Stream.count() |
default Single<Long> |
Maybe.count() |
default Single<T> |
Single.doOnError(Consumer<? super Throwable> consumer) |
default Single<T> |
Single.doOnValue(Consumer<? super T> consumer) |
static <T> Single<T> |
Single.error(Callable<? extends Throwable> callable) |
static <T> Single<T> |
Single.error(Throwable error) |
default Single<Boolean> |
Stream.exists(Predicate<? super T> function) |
static <T> Single<T> |
Single.fromCallable(Callable<? extends T> callable) |
default <M extends Map<K,D>,K,V,D extends Collection<V>> Single<M> |
Stream.groupBy(Callable<M> mapFactory,
Function<? super T,? extends K> keySelector,
Function<? super T,? extends V> valueSelector,
Callable<D> collectionFactory) |
default <M extends Map<K,List<T>>,K> Single<M> |
Stream.groupByList(Callable<M> mapFactory,
Function<? super T,? extends K> keySelector) |
default <M extends Map<K,List<V>>,K,V> Single<M> |
Stream.groupByList(Callable<M> mapFactory,
Function<? super T,? extends K> keySelector,
Function<? super T,? extends V> valueSelector) |
default <K> Single<Map<K,List<T>>> |
Stream.groupByList(Function<? super T,? extends K> keySelector) |
default <M extends Map<K,Set<T>>,K> Single<M> |
Stream.groupBySet(Callable<M> mapFactory,
Function<? super T,? extends K> keySelector) |
default <M extends Map<K,Set<V>>,K,V> Single<M> |
Stream.groupBySet(Callable<M> mapFactory,
Function<? super T,? extends K> keySelector,
Function<? super T,? extends V> valueSelector) |
default <K> Single<Map<K,Set<T>>> |
Stream.groupBySet(Function<? super T,? extends K> keySelector) |
default Single<Boolean> |
Stream.hasElements() |
default Single<Boolean> |
Stream.isEmpty() |
default Single<Boolean> |
Maybe.isPresent() |
default Single<String> |
Stream.join(String delimiter) |
default <R> Single<R> |
Single.map(Function<? super T,? extends R> mapper) |
static <T> Single<T> |
Single.of(T t) |
default Single<T> |
Maybe.orElse(T value) |
default Single<T> |
Single.println() |
default <R> Single<R> |
Stream.reduce(R initialValue,
BiFunction<? super R,? super T,? extends R> reducer) |
default <R> Single<R> |
Stream.reduceWithFactory(Callable<? extends R> initialValueFactory,
BiFunction<? super R,? super T,? extends R> reducer) |
default Single<T> |
Single.retryWhen(Function<? super Throwable,? extends Single<?>> function) |
default Single<T> |
Stream.single() |
default <R extends Number> Single<Statistics> |
Stream.statistics(Function<? super T,? extends R> mapper) |
static <T extends Number> Single<Statistics> |
Stream.statistics(Stream<T> stream) |
default <R> Single<Double> |
Stream.sumDouble(Function<? super T,Double> mapper) |
default <R> Single<Integer> |
Stream.sumInt(Function<? super T,Integer> mapper) |
default <R> Single<Long> |
Stream.sumLong(Function<? super T,Long> mapper) |
default <R> Single<T> |
Single.switchOnError(Function<? super Throwable,? extends Single<? extends T>> function) |
static Single<Integer> |
Single.timer(long duration,
TimeUnit unit) |
static <T> Single<T> |
Single.timer(T t,
long duration,
TimeUnit unit) |
default Single<List<T>> |
Stream.toList() |
default Single<List<T>> |
Stream.toList(int sizeHint) |
default <K,V> Single<Map<K,V>> |
Stream.toMap(Function<? super T,? extends K> keyFunction,
Function<? super T,? extends V> valueFunction) |
default Single<Set<T>> |
Stream.toSet() |
default Single<Set<T>> |
Stream.toSet(int sizeHint) |
default <R> Single<R> |
Stream.transformSingle(Function<? super Stream<T>,? extends Single<? extends R>> transformer) |