| Package | Description |
|---|---|
| org.rapidoid.fluent | |
| org.rapidoid.fluent.flow |
| Modifier and Type | Method and Description |
|---|---|
static FlowImpl<Character> |
Flow.chars(char startInclusive,
char endInclusive) |
static FlowImpl<Long> |
Flow.count(long startInclusive,
long endInclusive) |
static <T> FlowImpl<T> |
Flow.of(Iterable<T> values) |
static <T> FlowImpl<T> |
Flow.of(Stream<T> values) |
static <T> FlowImpl<T> |
Flow.of(T... values) |
static FlowImpl<Long> |
Flow.range(long startInclusive,
long endExclusive) |
| Modifier and Type | Method and Description |
|---|---|
FlowImpl<T> |
FlowImpl.distinct() |
FlowImpl<T> |
FlowImpl.filter(Predicate<? super T> predicate) |
<R> FlowImpl<R> |
FlowImpl.flatMap(Function<? super T,? extends Stream<? extends R>> mapper) |
FlowImpl<T> |
FlowImpl.limit(long maxSize) |
<R> FlowImpl<R> |
FlowImpl.map(Function<? super T,? extends R> mapper) |
FlowImpl<T> |
FlowImpl.onClose(Runnable closeHandler) |
FlowImpl<T> |
FlowImpl.parallel() |
FlowImpl<T> |
FlowImpl.peek(Consumer<? super T> action) |
FlowImpl<T> |
FlowImpl.sequential() |
FlowImpl<T> |
FlowImpl.skip(long n) |
FlowImpl<T> |
FlowImpl.sorted() |
FlowImpl<T> |
FlowImpl.sorted(Comparator<? super T> comparator) |
FlowImpl<T> |
FlowImpl.unordered() |
Copyright © 2014–2016 Nikolche Mihajlovski and contributors. All rights reserved.