- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,E>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.util.ReducingBarrierStep<S,E>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.map.MeanGlobalStep<S,E>
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterator<Traverser.Admin<E>>
,Step<S,E>
,Barrier<E>
,Generating<E,E>
,MemoryComputing<E>
public final class MeanGlobalStep<S extends Number,E extends Number> extends ReducingBarrierStep<S,E>
- Author:
- Marko A. Rodriguez (http://markorodriguez.com), Daniel Kuppitz (http://gremlin.guru)
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MeanGlobalStep.MeanGlobalBiOperator<S extends Number>
static class
MeanGlobalStep.MeanNumber
-
Nested classes/interfaces inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.ReducingBarrierStep
ReducingBarrierStep.NonEmittingSeed
-
-
Field Summary
-
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.ReducingBarrierStep
hasProcessedOnce, NON_EMITTING_SEED, reducingBiOperator, seedSupplier
-
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
id, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
-
-
Constructor Summary
Constructors Constructor Description MeanGlobalStep(Traversal.Admin traversal)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description E
generateFinalResult(E meanNumber)
Post-process the side-effect and return the post-processed side-effect.protected E
generateSeedFromStarts()
Advances the starts until a non-null value is found or simply returnsnull
.Set<TraverserRequirement>
getRequirements()
Provide the necessaryTraverserRequirement
that must be met by the traverser in order for the step to function properly.void
processAllStarts()
Process all left traversers by do not yield the resultant output.E
projectTraverser(Traverser.Admin<S> traverser)
-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.ReducingBarrierStep
addBarrier, clone, done, getBiOperator, getMemoryComputeKey, getSeedSupplier, hasNextBarrier, nextBarrier, processNextStart, reset, setReducingBiOperator, setSeedSupplier
-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
addLabel, addStart, addStarts, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hashCode, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, setId, setNextStep, setPreviousStep, setTraversal, toString
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
-
-
-
Constructor Detail
-
MeanGlobalStep
public MeanGlobalStep(Traversal.Admin traversal)
-
-
Method Detail
-
generateSeedFromStarts
protected E generateSeedFromStarts()
Advances the starts until a non-null value is found or simply returnsnull
. In this way, an allnull
stream will result innull
.- Overrides:
generateSeedFromStarts
in classReducingBarrierStep<S extends Number,E extends Number>
-
processAllStarts
public void processAllStarts()
Description copied from interface:Barrier
Process all left traversers by do not yield the resultant output. This method is useful for steps likeReducingBarrierStep
, where traversers can be processed "on the fly" and thus, reduce memory consumption.- Specified by:
processAllStarts
in interfaceBarrier<S extends Number>
- Overrides:
processAllStarts
in classReducingBarrierStep<S extends Number,E extends Number>
-
projectTraverser
public E projectTraverser(Traverser.Admin<S> traverser)
- Specified by:
projectTraverser
in classReducingBarrierStep<S extends Number,E extends Number>
-
getRequirements
public Set<TraverserRequirement> getRequirements()
Description copied from interface:Step
Provide the necessaryTraverserRequirement
that must be met by the traverser in order for the step to function properly. The provided default implements returns an empty set.- Returns:
- the set of requirements
-
generateFinalResult
public E generateFinalResult(E meanNumber)
Description copied from interface:Generating
Post-process the side-effect and return the post-processed side-effect. The default implementation is simply the identity function and returns the argument.- Parameters:
meanNumber
- the pre-processed side-effect.- Returns:
- the post-processed side-effect.
-
-