Uses of Interface
org.neo4j.cypherdsl.core.Statement
-
Packages that use Statement Package Description org.neo4j.cypherdsl.core Contains an internal DSL for creating Cypher.org.neo4j.cypherdsl.core.executables Provides an optional integration with the Neo4j Java driver and Project Reactor / Reactive streams.org.neo4j.cypherdsl.core.renderer A renderer forstatementsin the simplest form possible. -
-
Uses of Statement in org.neo4j.cypherdsl.core
Classes in org.neo4j.cypherdsl.core with type parameters of type Statement Modifier and Type Interface Description static interfaceStatementBuilder.BuildableStatement<T extends Statement>A statement that has all information required to be build and exposes a build method.Subinterfaces of Statement in org.neo4j.cypherdsl.core Modifier and Type Interface Description interfaceProcedureCallSee StandaloneCall.interfaceResultStatementA statement that returns items from the graph.static interfaceStatement.RegularQueryRepresentsRegularQuery.static interfaceStatement.SingleQueryRepresents aSingleQuery.Methods in org.neo4j.cypherdsl.core that return Statement Modifier and Type Method Description default @NotNull StatementStatementBuilder.BuildableStatement. explain()static @NotNull StatementStatement. of(@NotNull List<Clause> clauses)Creates a statement based on a list ofclauses.default @NotNull StatementStatementBuilder.BuildableStatement. profile()static @NotNull StatementCypher. union(Collection<Statement> statements)Creates aUNIONstatement from several other statements.static @NotNull StatementCypher. union(Statement... statements)Creates aUNIONstatement from several other statements.static @NotNull StatementCypher. unionAll(Collection<Statement> statements)Creates aUNION ALLstatement from several other statements.static @NotNull StatementCypher. unionAll(Statement... statements)Creates aUNION ALLstatement from several other statements.static @NotNull StatementStatement. usingPeriodic(Integer batchSize, @NotNull List<Clause> clauses)Creates a statement based on a list ofclausesand prepends it with USING PERIODIC COMMIT.Methods in org.neo4j.cypherdsl.core with parameters of type Statement Modifier and Type Method Description static StatementBuilder.OngoingReadingWithoutWhereCypher. call(Statement subquery)Starts building a statement based on one subquery.default StatementBuilder.OngoingReadingWithoutWhereExposesSubqueryCall. call(Statement statement)Thesubqueryparameter must be a valid subquery.default StatementBuilder.OngoingReadingWithoutWhereExposesSubqueryCall. call(Statement statement, String... imports)Thesubqueryparameter must be a valid subquery.StatementBuilder.OngoingReadingWithoutWhereExposesSubqueryCall. call(Statement statement, IdentifiableElement... imports)Thesubqueryparameter must be a valid subquery.static ClauseClauses. callClause(Statement statement)Creates a CALL {} sub-query clause.default @NotNull ExposesSubqueryCall.BuildableSubqueryExposesSubqueryCall. callInTransactions(Statement statement)default @NotNull ExposesSubqueryCall.BuildableSubqueryExposesSubqueryCall. callInTransactions(Statement statement, Integer rows)Creates a subquery running in its own transactions.default @NotNull ExposesSubqueryCall.BuildableSubqueryExposesSubqueryCall. callInTransactions(Statement statement, Integer rows, String... imports)Creates a subquery running in its own transactions.@NotNull ExposesSubqueryCall.BuildableSubqueryExposesSubqueryCall. callInTransactions(Statement statement, Integer rows, IdentifiableElement... imports)Creates a subquery running in its own transactions.default @NotNull ExposesSubqueryCall.BuildableSubqueryExposesSubqueryCall. callInTransactions(Statement statement, String... imports)Creates a subquery running in its own transactions.default ExposesSubqueryCall.BuildableSubqueryExposesSubqueryCall. callInTransactions(Statement statement, IdentifiableElement... imports)Creates a subquery running in its own transactions.static @NotNull StatementCypher. union(Statement... statements)Creates aUNIONstatement from several other statements.static @NotNull StatementCypher. unionAll(Statement... statements)Creates aUNION ALLstatement from several other statements.Method parameters in org.neo4j.cypherdsl.core with type arguments of type Statement Modifier and Type Method Description static @NotNull StatementCypher. union(Collection<Statement> statements)Creates aUNIONstatement from several other statements.static @NotNull StatementCypher. unionAll(Collection<Statement> statements)Creates aUNION ALLstatement from several other statements. -
Uses of Statement in org.neo4j.cypherdsl.core.executables
Methods in org.neo4j.cypherdsl.core.executables with parameters of type Statement Modifier and Type Method Description static ExecutableStatementExecutableStatement. makeExecutable(Statement statement)Creates an executable statement based on the given statementstatic ReactiveExecutableStatementReactiveExecutableStatement. makeExecutable(Statement statement)Creates an executable statement based on the given statementstatic ExecutableStatementExecutableStatement. of(Statement statement)Creates an executable statement based on the given statementstatic ReactiveExecutableStatementReactiveExecutableStatement. of(Statement statement)Creates an executable statement based on the given statement -
Uses of Statement in org.neo4j.cypherdsl.core.renderer
Methods in org.neo4j.cypherdsl.core.renderer with parameters of type Statement Modifier and Type Method Description StringRenderer. render(Statement statement)Renders a statement.
-