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()default @NotNull StatementStatementBuilder.BuildableStatement. profile()static @NotNull StatementCypher. union(java.util.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(java.util.Collection<Statement> statements)Creates aUNION ALLstatement from several other statements.static @NotNull StatementCypher. unionAll(Statement... statements)Creates aUNION ALLstatement from several other statements.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.StatementBuilder.OngoingReadingWithoutWhereExposesSubqueryCall. call(Statement statement)Thesubqueryparameter must be a valid subquery.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(java.util.Collection<Statement> statements)Creates aUNIONstatement from several other statements.static @NotNull StatementCypher. unionAll(java.util.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 java.lang.StringRenderer. render(Statement statement)Renders a statement.
-