Class ExecutablePlanStatsOfIteratorBasedPlan
java.lang.Object
se.liu.ida.hefquin.base.utils.StatsImpl
se.liu.ida.hefquin.engine.queryplan.executable.impl.iterbased.ExecutablePlanStatsOfIteratorBasedPlan
- All Implemented Interfaces:
Stats
,ExecutablePlanStats
public class ExecutablePlanStatsOfIteratorBasedPlan
extends StatsImpl
implements ExecutablePlanStats
An implementation of
ExecutablePlanStats
for IteratorBasedExecutablePlanImpl
.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionExecutablePlanStatsOfIteratorBasedPlan
(ExecutableOperatorStats rootOpStats, ExecutablePlanStats... subPlanStats) -
Method Summary
Modifier and TypeMethodDescriptionint
Returns the number of sub-plans of the executable plan for which this object has been created (considering sub-plans that are direct children of the root operator of the plan).Returns the stats of the root operator of the executable plan for which this object has been created.Returns an iterable over the stats created for the sub-plans of the executable plan for which this object has been created.getSubPlanStats
(int i) Returns the stats created for the i-th sub-plan of the executable plan for which this object has been created, where i starts at index 0 (zero).Methods inherited from class se.liu.ida.hefquin.base.utils.StatsImpl
getEntry, getEntryNames, isEmpty, put
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface se.liu.ida.hefquin.base.utils.Stats
getEntry, getEntryNames, isEmpty
-
Field Details
-
enRootOperatorStats
- See Also:
-
enNumberOfSubPlans
- See Also:
-
enSubPlanStats
- See Also:
-
-
Constructor Details
-
ExecutablePlanStatsOfIteratorBasedPlan
public ExecutablePlanStatsOfIteratorBasedPlan(ExecutableOperatorStats rootOpStats, ExecutablePlanStats... subPlanStats)
-
-
Method Details
-
getRootOperatorStats
Returns the stats of the root operator of the executable plan for which this object has been created. -
getNumberOfSubPlans
public int getNumberOfSubPlans()Returns the number of sub-plans of the executable plan for which this object has been created (considering sub-plans that are direct children of the root operator of the plan). -
getSubPlanStats
Returns the stats created for the i-th sub-plan of the executable plan for which this object has been created, where i starts at index 0 (zero). If the plan had fewer sub-plans (or no sub-plans at all), then aNoSuchElementException
will be thrown.- Throws:
NoSuchElementException
-
getSubPlanStats
Returns an iterable over the stats created for the sub-plans of the executable plan for which this object has been created.
-