Package com.arcadedb.query.sql.executor
Interface ExecutionPlan
-
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
InternalExecutionPlan
- All Known Implementing Classes:
DDLExecutionPlan
,DeleteExecutionPlan
,ForEachExecutionPlan
,IfExecutionPlan
,InfoExecutionPlan
,InsertExecutionPlan
,ScriptExecutionPlan
,SelectExecutionPlan
,SingleOpExecutionPlan
,UpdateExecutionPlan
public interface ExecutionPlan extends Serializable
Created by luigidellaquila on 06/07/16.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ExecutionStep>
getSteps()
String
prettyPrint(int depth, int indent)
Result
toResult()
-
-
-
Method Detail
-
getSteps
List<ExecutionStep> getSteps()
-
prettyPrint
String prettyPrint(int depth, int indent)
-
toResult
Result toResult()
-
-