Searched refs:finisher (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/main/java/java/util/stream/ |
D | Collector.java | 233 Function<A, R> finisher(); in finisher() method 294 Function<A, R> finisher, in of() argument 299 Objects.requireNonNull(finisher); in of() 307 return new Collectors.CollectorImpl<>(supplier, accumulator, combiner, finisher, cs); in of()
|
D | Collectors.java | 151 private final Function<A, R> finisher; field in CollectorImpl 157 Function<A,R> finisher, in CollectorImpl() argument 162 this.finisher = finisher; in CollectorImpl() 189 public Function<A, R> finisher() { in finisher() method in CollectorImpl 190 return finisher; in finisher() 356 downstream.combiner(), downstream.finisher(), 379 Function<R,RR> finisher) { 393 downstream.finisher().andThen(finisher), 920 Function<A, A> downstreamFinisher = (Function<A, A>) downstream.finisher(); 921 Function<Map<K, A>, M> finisher = intermediate -> { [all …]
|
D | ReferencePipeline.java | 521 : collector.finisher().apply(container);
|