Module litebridge.orm
Class SqlUpdateWhereConditionClauseTerminalImpl
java.lang.Object
org.litebridge.orm.api.sql.update.SqlUpdateWhereConditionClauseTerminalImpl
- All Implemented Interfaces:
ConditionClauseTerminal<Row,,SqlUpdateWhereConditionClause, SqlUpdateWhereConditionClauseTerminal> SqlUpdateWhereConditionClauseTerminal,UpdateQuery,UpdateTerminal,UpdateWhereConditionClauseTerminal<Row,SqlUpdateWhereConditionClause, SqlUpdateWhereConditionClauseTerminal>
public final class SqlUpdateWhereConditionClauseTerminalImpl
extends Object
implements SqlUpdateWhereConditionClauseTerminal, UpdateTerminal
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdds an "AND" condition to the current condition clause using the specified column.and(QueryConditionBuilder<Row> query) Adds an "AND" condition with a nested condition clause.and(ExpressionSpec expression) Adds an "AND" condition to the current condition clause using the specified expression.execute()Executes the update.Adds an "OR" condition to the current condition clause using the specified column.or(QueryConditionBuilder<Row> query) Adds an "OR" condition with specified nested condition clause.or(ExpressionSpec expression) Adds an "OR" condition to the current condition clause using the specified expression.Returns the update specification.
-
Constructor Details
-
SqlUpdateWhereConditionClauseTerminalImpl
-
-
Method Details
-
updateSpec
Description copied from interface:UpdateTerminalReturns the update specification.- Specified by:
updateSpecin interfaceUpdateTerminal- Returns:
- the update specification.
-
execute
Description copied from interface:UpdateTerminalExecutes the update.- Specified by:
executein interfaceUpdateTerminal- Returns:
- the update result.
-
and
Description copied from interface:ConditionClauseTerminalAdds an "AND" condition to the current condition clause using the specified column.This method is used to chain additional conditions in a SQL query in a fluent manner.
- Specified by:
andin interfaceConditionClauseTerminal<Row,SqlUpdateWhereConditionClause, SqlUpdateWhereConditionClauseTerminal> - Parameters:
column- the name of the column to be used in the "AND" condition- Returns:
- the parent condition clause interface, allowing further chaining of conditions
-
and
Description copied from interface:ConditionClauseTerminalAdds an "AND" condition to the current condition clause using the specified expression.This method is used to chain additional conditions in a SQL query in a type-safe and fluent manner.
- Specified by:
andin interfaceConditionClauseTerminal<Row,SqlUpdateWhereConditionClause, SqlUpdateWhereConditionClauseTerminal> - Parameters:
expression- the expression to be used in the "AND" condition- Returns:
- the parent condition clause interface, allowing further chaining of conditions
-
and
Description copied from interface:ConditionClauseTerminalAdds an "AND" condition with a nested condition clause.The nested condition clause is grouped with parentheses to ensure proper SQL syntax.
- Specified by:
andin interfaceConditionClauseTerminal<Row,SqlUpdateWhereConditionClause, SqlUpdateWhereConditionClauseTerminal> - Parameters:
query- Function that builds the nested condition clause- Returns:
- the parent condition clause interface, allowing further chaining of conditions
-
or
Description copied from interface:ConditionClauseTerminalAdds an "OR" condition to the current condition clause using the specified column.This method is used to chain additional conditions in a SQL query in a fluent manner.
- Specified by:
orin interfaceConditionClauseTerminal<Row,SqlUpdateWhereConditionClause, SqlUpdateWhereConditionClauseTerminal> - Parameters:
column- the name of the column to be used in the "AND" condition- Returns:
- the parent condition clause interface, allowing further chaining of conditions
-
or
Description copied from interface:ConditionClauseTerminalAdds an "OR" condition to the current condition clause using the specified expression.This method is used to chain additional conditions in a SQL query in a type-safe and fluent manner.
- Specified by:
orin interfaceConditionClauseTerminal<Row,SqlUpdateWhereConditionClause, SqlUpdateWhereConditionClauseTerminal> - Parameters:
expression- the expression to be used in the "AND" condition- Returns:
- the parent condition clause interface, allowing further chaining of conditions
-
or
Description copied from interface:ConditionClauseTerminalAdds an "OR" condition with specified nested condition clause.The nested condition clause is grouped with parentheses to ensure proper SQL syntax.
- Specified by:
orin interfaceConditionClauseTerminal<Row,SqlUpdateWhereConditionClause, SqlUpdateWhereConditionClauseTerminal> - Parameters:
query- Function that builds the nested condition clause- Returns:
- the parent condition clause interface, allowing further chaining of conditions
-