Class ConcatSequence<T>
- java.lang.Object
-
- org.apache.druid.java.util.common.guava.ConcatSequence<T>
-
-
Constructor Summary
Constructors Constructor Description ConcatSequence(Sequence<? extends Sequence<? extends T>> baseSequences)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <OutType> OutType
accumulate(OutType initValue, Accumulator<OutType,T> accumulator)
Accumulate this sequence using the given accumulator.<OutType> Yielder<OutType>
makeYielder(Yielder<Sequence<T>> yielderYielder, OutType initValue, YieldingAccumulator<OutType,T> accumulator)
<OutType> Yielder<OutType>
toYielder(OutType initValue, YieldingAccumulator<OutType,T> accumulator)
Return a Yielder for accumulated sequence.
-
-
-
Method Detail
-
accumulate
public <OutType> OutType accumulate(OutType initValue, Accumulator<OutType,T> accumulator)
Description copied from interface:Sequence
Accumulate this sequence using the given accumulator.- Specified by:
accumulate
in interfaceSequence<T>
- Type Parameters:
OutType
- the type of accumulated value.- Parameters:
initValue
- the initial value to pass along to start the accumulation.accumulator
- the accumulator which is responsible for accumulating input values.- Returns:
- accumulated value.
-
toYielder
public <OutType> Yielder<OutType> toYielder(OutType initValue, YieldingAccumulator<OutType,T> accumulator)
Description copied from interface:Sequence
Return a Yielder for accumulated sequence.- Specified by:
toYielder
in interfaceSequence<T>
- Type Parameters:
OutType
- the type of accumulated value.- Parameters:
initValue
- the initial value to pass along to start the accumulation.accumulator
- the accumulator which is responsible for accumulating input values.- Returns:
- a Yielder for accumulated sequence.
- See Also:
Yielder
-
-