Package org.neo4j.cypherdsl.core
Interface StatementBuilder.BuildableStatement
-
- All Known Subinterfaces:
ProcedureCall.OngoingStandaloneCallWithArguments,ProcedureCall.OngoingStandaloneCallWithoutArguments,ProcedureCall.OngoingStandaloneCallWithReturnFields,StatementBuilder.BuildableMatchAndUpdate,StatementBuilder.BuildableOngoingMergeAction,StatementBuilder.OngoingMatchAndReturnWithOrder,StatementBuilder.OngoingMerge,StatementBuilder.OngoingReadingAndReturn,StatementBuilder.OngoingUpdate,StatementBuilder.TerminalExposesLimit,StatementBuilder.TerminalOngoingOrderDefinition
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.BuildableStatementA statement that has all information required to be build and exposes a build method.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Statementbuild()default Statementexplain()default Statementprofile()
-
-
-
Method Detail
-
build
Statement build()
- Returns:
- The statement ready to be used, i.e. in a renderer.
-
explain
default Statement explain()
- Returns:
- Creates a statement that returns an explain plan for the original statement.
- Since:
- 2020.1.2
-
profile
default Statement profile()
- Returns:
- Creates a profiled statement that includes both the result and the actually executed and profiled plan.
- Since:
- 2020.1.2
-
-