Java Streams Stream
API
- Stream allMatch(Predicate predicate)
- Stream anyMatch(Predicate predicate)
- Stream builder()
- Stream collect(Collector collector)
- Stream collect(Supplier supplier, BiConsumer accumulator, BiConsumer combiner)
- Stream concat(Stream a, Stream b)
- Stream count()
- Stream distinct()
- Stream empty()
- Stream filter(Predicate predicate)
- Stream findAny()
- Stream findFirst()
- Stream flatMapToDouble(Function mapper)
- Stream flatMapToInt(Function mapper)
- Stream flatMapToLong(Function mapper)
- Stream flatMap(Function mapper)
- Stream forEachOrdered(Consumer action)
- Stream forEach(Consumer action)
- Stream generate(Supplier s)
- Stream iterate(T seed, UnaryOperator f)
- Stream limit(long maxSize)
- Stream mapToDouble (ToDoubleFunction mapper)
- Stream mapToInt(ToIntFunction mapper)
- Stream mapToLong(ToLongFunction mapper)
- Stream map(Function mapper)
- Stream max(Comparator comparator)
- Stream min(Comparator comparator)
- Stream noneMatch(Predicate predicate)
- Stream of(T t)
- Stream of(T... values)
- Stream peek(Consumer action)
- Stream reduce(BinaryOperator accumulator)
- Stream reduce(T identity, BinaryOperator accumulator)
- Stream reduce(U identity, BiFunction accumulator, BinaryOperator combiner)
- Stream skip(long n)
- Stream sorted()
- Stream sorted(Comparator comparator)
- Stream toArray()
- Stream toArray(IntFunction generator)