Class PhysicalPlanWithBinaryRootImpl
java.lang.Object
se.liu.ida.hefquin.engine.queryplan.physical.impl.PhysicalPlanWithBinaryRootImpl
- All Implemented Interfaces:
PhysicalPlan
,PhysicalPlanWithBinaryRoot
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
PhysicalPlanWithBinaryRootImpl
(BinaryPhysicalOp rootOp, PhysicalPlan subPlan1, PhysicalPlan subPlan2) Instead of creating such a plan directly using this constructor, usePhysicalPlanFactory
. -
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.getSubPlan
(int i) Returns the i-th sub-plan of this plan, where i starts at index 0 (zero).Convenience method that always should return the same as what is returned by callingPhysicalPlan.getSubPlan(int)
with a value of 0.Convenience method that always should return the same as what is returned by callingPhysicalPlan.getSubPlan(int)
with a value of 1.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
-
PhysicalPlanWithBinaryRootImpl
protected PhysicalPlanWithBinaryRootImpl(BinaryPhysicalOp rootOp, PhysicalPlan subPlan1, PhysicalPlan subPlan2) Instead of creating such a plan directly using this constructor, usePhysicalPlanFactory
.
-
-
Method Details
-
equals
-
hashCode
public int hashCode() -
getRootOperator
Description copied from interface:PhysicalPlan
Returns the root operator of this plan.- Specified by:
getRootOperator
in interfacePhysicalPlan
- Specified by:
getRootOperator
in interfacePhysicalPlanWithBinaryRoot
-
getExpectedVariables
Description copied from interface:PhysicalPlan
Returns the variables that can be expected in the solution mappings produced by this plan.- Specified by:
getExpectedVariables
in interfacePhysicalPlan
-
getSubPlan1
Description copied from interface:PhysicalPlanWithBinaryRoot
Convenience method that always should return the same as what is returned by callingPhysicalPlan.getSubPlan(int)
with a value of 0.- Specified by:
getSubPlan1
in interfacePhysicalPlanWithBinaryRoot
-
getSubPlan2
Description copied from interface:PhysicalPlanWithBinaryRoot
Convenience method that always should return the same as what is returned by callingPhysicalPlan.getSubPlan(int)
with a value of 1.- Specified by:
getSubPlan2
in interfacePhysicalPlanWithBinaryRoot
-
numberOfSubPlans
public int numberOfSubPlans()Description copied from interface:PhysicalPlan
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 interfacePhysicalPlan
-
getSubPlan
Description copied from interface:PhysicalPlan
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 interfacePhysicalPlan
- Throws:
NoSuchElementException
-