Interface IPlanDescriptor
-
- All Known Implementing Classes:
PlanDescriptor
public interface IPlanDescriptor
Denotes an executable plan- Since:
- 1.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<PParameter>
getAdornment()
The set of parameters this plan assumes to be boundjava.util.Set<IInputKey>
getIteratedKeys()
The collection ofIInputKey
s which needs to be iterated during the execution of this plan.java.util.Collection<SearchPlanForBody>
getPlan()
The executable search plans for each body in the queryPQuery
getQuery()
The query which this plan implements
-
-
-
Method Detail
-
getQuery
PQuery getQuery()
The query which this plan implements
-
getPlan
java.util.Collection<SearchPlanForBody> getPlan()
The executable search plans for each body in the query- Since:
- 2.0
-
getAdornment
java.util.Set<PParameter> getAdornment()
The set of parameters this plan assumes to be bound
-
-