Interface LogicalPlanWithNaryRoot
- 
Method Summary
Modifier and TypeMethodDescriptionReturns the root operator of this plan.Convenience method that always should return an iterator over the same sub-plans that can be accessed viaLogicalPlan.getSubPlan(int).Methods inherited from interface se.liu.ida.hefquin.engine.queryplan.logical.LogicalPlan
getExpectedVariables, getSubPlan, numberOfSubPlans 
- 
Method Details
- 
getRootOperator
NaryLogicalOp getRootOperator()Description copied from interface:LogicalPlanReturns the root operator of this plan.- Specified by:
 getRootOperatorin interfaceLogicalPlan
 - 
getSubPlans
Iterator<LogicalPlan> getSubPlans()Convenience method that always should return an iterator over the same sub-plans that can be accessed viaLogicalPlan.getSubPlan(int). 
 -