static @NotNull FunctionInvocation |
Functions.collect(@NotNull Named variable) |
Creates a function invocation for the collect() function.
|
static @NotNull FunctionInvocation |
Functions.collectDistinct(@NotNull Named variable) |
Creates a function invocation for the collect() function with DISTINCT added.
|
default @NotNull StatementBuilder.OngoingUpdate |
StatementBuilder.ExposesDelete.delete(Named... variables) |
Renders a DELETE clause targeting the given variables.
|
default @NotNull StatementBuilder.OngoingUpdate |
StatementBuilder.ExposesDelete.detachDelete(Named... variables) |
Renders a DETACH DELETE clause targeting the given variables.
|
default @NotNull StatementBuilder.BuildableMatchAndUpdate |
StatementBuilder.ExposesSet.mutate(Named variable,
Expression properties) |
Creates a += operation.
|
default @NotNull StatementBuilder.BuildableOngoingMergeAction |
StatementBuilder.OngoingMergeAction.mutate(Named variable,
Expression properties) |
Creates a += operation.
|
default StatementBuilder.OngoingReadingAndReturn |
ExposesReturning.returning(Named... variables) |
Creates the RETURN clause.
|
default @NotNull ListComprehension |
ListComprehension.OngoingDefinitionWithoutReturn.returning(Named... variables) |
|
default @NotNull PatternComprehension |
PatternComprehension.OngoingDefinitionWithoutReturn.returning(Named... variables) |
|
default StatementBuilder.OngoingReadingAndReturn |
ExposesReturning.returningDistinct(Named... variables) |
Creates a RETURN clause containing the DISTINCT keyword.
|
default @NotNull StatementBuilder.BuildableMatchAndUpdate |
StatementBuilder.ExposesSet.set(Named variable,
Expression expression) |
Adds a SET clause to the statement, modifying the given named thing with an expression.
|
default @NotNull StatementBuilder.BuildableOngoingMergeAction |
StatementBuilder.OngoingMergeAction.set(Named variable,
Expression expression) |
Adds a SET clause to the statement, modifying the given named thing with an expression.
|
default @NotNull StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere |
StatementBuilder.ExposesWith.with(Named... variables) |
|
@NotNull StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere |
StatementBuilder.with(Named... expressions) |
Starts a with clause by passing named expressions to it.
|
default @NotNull StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere |
StatementBuilder.ExposesWith.withDistinct(Named... variables) |
|
default T |
ExposesCall.ExposesYield.yield(Named... yieldedItems) |
Adds the given items to the YIELD clause of the generated call.
|