Lines Matching refs:TerminalOp

46  * Factory for creating instances of {@code TerminalOp} that implement
56 * Constructs a {@code TerminalOp} that implements a functional reduce on
66 * @return a {@code TerminalOp} implementing the reduction
68 public static <T, U> TerminalOp<T, U>
97 * Constructs a {@code TerminalOp} that implements a functional reduce on
102 * @return A {@code TerminalOp} implementing the reduction
104 public static <T> TerminalOp<T, Optional<T>>
147 * Constructs a {@code TerminalOp} that implements a mutable reduce on
155 public static <T, I> TerminalOp<T, I>
193 * Constructs a {@code TerminalOp} that implements a mutable reduce on
202 * @return a {@code TerminalOp} implementing the reduction
204 public static <T, R> TerminalOp<T, R>
237 * Constructs a {@code TerminalOp} that counts the number of stream
244 * @return a {@code TerminalOp} implementing the counting
246 public static <T> TerminalOp<T, Long>
276 * Constructs a {@code TerminalOp} that implements a functional reduce on
281 * @return a {@code TerminalOp} implementing the reduction
283 public static TerminalOp<Integer, Integer>
319 * Constructs a {@code TerminalOp} that implements a functional reduce on
323 * @return a {@code TerminalOp} implementing the reduction
325 public static TerminalOp<Integer, OptionalInt>
369 * Constructs a {@code TerminalOp} that implements a mutable reduce on
379 public static <R> TerminalOp<Integer, R>
412 * Constructs a {@code TerminalOp} that counts the number of stream
418 * @return a {@code TerminalOp} implementing the counting
420 public static TerminalOp<Integer, Long>
450 * Constructs a {@code TerminalOp} that implements a functional reduce on
455 * @return a {@code TerminalOp} implementing the reduction
457 public static TerminalOp<Long, Long>
493 * Constructs a {@code TerminalOp} that implements a functional reduce on
497 * @return a {@code TerminalOp} implementing the reduction
499 public static TerminalOp<Long, OptionalLong>
543 * Constructs a {@code TerminalOp} that implements a mutable reduce on
551 * @return a {@code TerminalOp} implementing the reduction
553 public static <R> TerminalOp<Long, R>
586 * Constructs a {@code TerminalOp} that counts the number of stream
592 * @return a {@code TerminalOp} implementing the counting
594 public static TerminalOp<Long, Long>
624 * Constructs a {@code TerminalOp} that implements a functional reduce on
629 * @return a {@code TerminalOp} implementing the reduction
631 public static TerminalOp<Double, Double>
667 * Constructs a {@code TerminalOp} that implements a functional reduce on
671 * @return a {@code TerminalOp} implementing the reduction
673 public static TerminalOp<Double, OptionalDouble>
717 * Constructs a {@code TerminalOp} that implements a mutable reduce on
725 * @return a {@code TerminalOp} implementing the reduction
727 public static <R> TerminalOp<Double, R>
760 * Constructs a {@code TerminalOp} that counts the number of stream
766 * @return a {@code TerminalOp} implementing the counting
768 public static TerminalOp<Double, Long>
880 * A {@code TerminalOp} that evaluates a stream pipeline and sends the
890 implements TerminalOp<T, R> {