no.digipost.stream.CollectorDecorator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digg Show documentation
Show all versions of digg Show documentation
Some stellar general purpose utils.
The newest version!
/*
* Copyright (C) Posten Norge AS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package no.digipost.stream;
import java.util.Set;
import java.util.function.BiConsumer;
import java.util.function.BinaryOperator;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collector;
/**
* Base {@link Collector} implementation which delegates to (decorates)
* another Collector. Override individual methods to adapt any delegation.
*/
public abstract class CollectorDecorator implements Collector {
protected final Collector decoratedCollector;
protected CollectorDecorator(Collector collector) {
this.decoratedCollector = collector;
}
@Override
public Supplier supplier() {
return decoratedCollector.supplier();
}
@Override
public BiConsumer accumulator() {
return decoratedCollector.accumulator();
}
@Override
public BinaryOperator combiner() {
return decoratedCollector.combiner();
}
@Override
public Function finisher() {
return decoratedCollector.finisher();
}
@Override
public Set characteristics() {
return decoratedCollector.characteristics();
}
}