BaseStream
sequential()
parallel()
unordered()
onClose(..)
Stream
filter(..)
map(..)
mapToInt(..)
mapToLong(..)
mapToDouble(..)
flatMap(..)
flatMapToInt(..)
flatMapToLong(..)
flatMapToDouble(..)
distinct()stateful
sorted(..)stateful
peek(..)
limit(..)stateful,
short-circuiting
skip(..)statefulIntStream, LongStream and DoubleStream have similar methods as Stream
does but with different args.
Here are some extra methods:IntStream
mapToObj(..)
asLongStream()
asDoubleStream()
boxed()
LongStream
mapToObj(..)
asDoubleStream()
boxed()
DoubleStream
mapToObj(..)
boxed()
BaseStream
iterator()
spliterator()
Stream
forEach(..)
forEachOrdered(..)
toArray(..)
reduce(..)
collect(..)
min(..)
max(..)
count()
anyMatch(..)short-circuiting
allMatch(..)short-circuiting
noneMatch(..)short-circuiting
findFirst()short-circuiting
findAny()short-circuiting,
nondeterministicIntStream, LongStream and DoubleStream have similar methods as Stream
does but with different args.
Here are some extra methods:IntStreamLongStreamDoubleStream
sum()
average()
summaryStatistics()