Uses of Class
no.digipost.stream.NonEmptyStream
-
Packages that use NonEmptyStream Package Description no.digipost.collection no.digipost.stream -
-
Uses of NonEmptyStream in no.digipost.collection
Methods in no.digipost.collection that return NonEmptyStream Modifier and Type Method Description default NonEmptyStream<E>NonEmptyList. stream() -
Uses of NonEmptyStream in no.digipost.stream
Methods in no.digipost.stream that return NonEmptyStream Modifier and Type Method Description NonEmptyStream<T>NonEmptyStream. distinct()NonEmptyStream<T>NonEmptyStream. limitToNonEmpty(long maxSizeMoreThanZero)Returns a stream consisting of the elements of this stream, truncated to be no longer thanmaxSizeMoreThanZeroin length.<R> NonEmptyStream<R>NonEmptyStream. map(Function<? super T,? extends R> mapper)static <T> NonEmptyStream<T>NonEmptyStream. of(Supplier<? extends T> firstElement, Stream<T> remainingElements)static <T> NonEmptyStream<T>NonEmptyStream. of(T singleElement)static <T> NonEmptyStream<T>NonEmptyStream. of(T firstElement, Stream<T> remainingElements)static <T> NonEmptyStream<T>NonEmptyStream. of(T firstElement, T... remainingElements)NonEmptyStream<T>NonEmptyStream. onClose(Runnable closeHandler)NonEmptyStream<T>NonEmptyStream. parallel()NonEmptyStream<T>NonEmptyStream. peek(Consumer<? super T> action)NonEmptyStream<T>NonEmptyStream. sequential()NonEmptyStream<T>NonEmptyStream. sorted()NonEmptyStream<T>NonEmptyStream. sorted(Comparator<? super T> comparator)NonEmptyStream<T>NonEmptyStream. unordered()
-