functionalj.stream.longstream.collect.DerivedLongCollectorToIntPlus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionalj-core Show documentation
Show all versions of functionalj-core Show documentation
The module for FunctionalJ Core.
package functionalj.stream.longstream.collect;
import java.util.Set;
import java.util.function.BiConsumer;
import java.util.function.BinaryOperator;
import java.util.function.DoubleToLongFunction;
import java.util.function.Function;
import java.util.function.IntToLongFunction;
import java.util.function.LongUnaryOperator;
import java.util.function.ObjDoubleConsumer;
import java.util.function.ObjIntConsumer;
import java.util.function.ObjLongConsumer;
import java.util.function.Supplier;
import java.util.function.ToIntFunction;
import java.util.function.ToLongFunction;
import java.util.stream.Collector;
import java.util.stream.Collector.Characteristics;
import functionalj.stream.collect.CollectorToIntPlus;
import functionalj.stream.doublestream.collect.DoubleCollectorToIntPlus;
import functionalj.stream.intstream.collect.IntCollectorToIntPlus;
import lombok.val;
abstract public class DerivedLongCollectorToIntPlus {
final LongCollectorToIntPlus collector;
protected DerivedLongCollectorToIntPlus(LongCollectorToIntPlus collector) {
this.collector = collector;
}
public Supplier supplier() {
return collector.supplier();
}
public BinaryOperator combiner() {
return collector.combiner();
}
public ToIntFunction finisherToInt() {
return collector.finisherToInt();
}
public Function finisher() {
return a -> finisherToInt().applyAsInt(a);
}
public Set characteristics() {
return collector.characteristics();
}
//== Implementations ==
public static class FromObj
extends DerivedLongCollectorToIntPlus
implements CollectorToIntPlus {
private final ToLongFunction mapper;
public FromObj(LongCollectorToIntPlus collector,
ToLongFunction mapper) {
super(collector);
this.mapper = mapper;
}
@SuppressWarnings("unchecked")
@Override
public BiConsumer accumulator(){
@SuppressWarnings("rawtypes")
val accumulator = (BiConsumer)collector.accumulator();
return (a, s) -> {
val d = mapper.applyAsLong(s);
accumulator.accept(a, d);
};
}
@Override
public Collector collector() {
return this;
}
}
public static class FromInt
extends DerivedLongCollectorToIntPlus
implements IntCollectorToIntPlus {
private final IntToLongFunction mapper;
public