Class LogicalPlanWithUnaryRootImpl
java.lang.Object
se.liu.ida.hefquin.engine.queryplan.logical.impl.LogicalPlanWithUnaryRootImpl
- All Implemented Interfaces:
LogicalPlan
,LogicalPlanWithUnaryRoot
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the variables that can be expected in the solution mappings produced by this plan.Returns the root operator of this plan.Convenience method that always should return the same as what is returned by callingLogicalPlan.getSubPlan(int)
with a value of 0.getSubPlan
(int i) Returns the i-th sub-plan of this plan, where i starts at index 0 (zero).int
hashCode()
int
Returns the number of sub-plans that this plan has (considering sub-plans that are direct children of the root operator of this plan).
-
Constructor Details
-
LogicalPlanWithUnaryRootImpl
-
-
Method Details
-
equals
-
hashCode
public int hashCode() -
getRootOperator
Description copied from interface:LogicalPlan
Returns the root operator of this plan.- Specified by:
getRootOperator
in interfaceLogicalPlan
- Specified by:
getRootOperator
in interfaceLogicalPlanWithUnaryRoot
-
getExpectedVariables
Description copied from interface:LogicalPlan
Returns the variables that can be expected in the solution mappings produced by this plan.- Specified by:
getExpectedVariables
in interfaceLogicalPlan
-
getSubPlan
Description copied from interface:LogicalPlanWithUnaryRoot
Convenience method that always should return the same as what is returned by callingLogicalPlan.getSubPlan(int)
with a value of 0.- Specified by:
getSubPlan
in interfaceLogicalPlanWithUnaryRoot
-
numberOfSubPlans
public int numberOfSubPlans()Description copied from interface:LogicalPlan
Returns the number of sub-plans that this plan has (considering sub-plans that are direct children of the root operator of this plan).- Specified by:
numberOfSubPlans
in interfaceLogicalPlan
-
getSubPlan
Description copied from interface:LogicalPlan
Returns the i-th sub-plan of this plan, where i starts at index 0 (zero). If the plan has fewer sub-plans (or no sub-plans at all), then aNoSuchElementException
will be thrown.- Specified by:
getSubPlan
in interfaceLogicalPlan
- Throws:
NoSuchElementException
-