Uses of Record Class
org.litebridge.db.spi.query.ConditionGroup
Packages that use ConditionGroup
Package
Description
Query-related models
Update-related models
Query/clause specification models used in the query API
Persistence subsystem; contains classes for saving/updating/deleting DTOs
-
Uses of ConditionGroup in org.litebridge.db.spi.impl.sql
Methods in org.litebridge.db.spi.impl.sql with parameters of type ConditionGroupModifier and TypeMethodDescriptionprotected voidAbstractSqlGenerator.appendConditionsAndSubgroups(StringBuilder sql, ConditionGroup conditionGroup, List<@Nullable BindValue> bindValues, Operation operation, ConnectionProvider connectionProvider) Appends conditions and subgroups to the SQL builder. -
Uses of ConditionGroup in org.litebridge.db.spi.query
Methods in org.litebridge.db.spi.query that return ConditionGroupModifier and TypeMethodDescriptionLogicConditionGroup.conditionGroup()Returns the value of theconditionGrouprecord component.Join.conditions()Returns the value of theconditionsrecord component.Methods in org.litebridge.db.spi.query that return types with arguments of type ConditionGroupModifier and TypeMethodDescriptionSelect.having()Returns the value of thehavingrecord component.Select.where()Returns the value of thewhererecord component.Constructors in org.litebridge.db.spi.query with parameters of type ConditionGroupModifierConstructorDescriptionJoin(Table table, ConditionGroup conditions) Creates an instance of aJoinrecord class.LogicConditionGroup(LogicOperator logicOperator, ConditionGroup conditionGroup) Creates an instance of aLogicConditionGrouprecord class.Constructor parameters in org.litebridge.db.spi.query with type arguments of type ConditionGroupModifierConstructorDescriptionSelect(Table table, List<SelectExpression> expressions, List<Join> joins, Optional<ConditionGroup> where, List<SelectExpression> groupBy, Optional<ConditionGroup> having, List<OrderBy> orderBy, Optional<Limit> limit) Creates an instance of aSelectrecord class. -
Uses of ConditionGroup in org.litebridge.db.spi.update
Methods in org.litebridge.db.spi.update that return ConditionGroupModifier and TypeMethodDescriptionDelete.where()Returns the value of thewhererecord component.Update.where()Returns the value of thewhererecord component.Constructors in org.litebridge.db.spi.update with parameters of type ConditionGroupModifierConstructorDescriptionDelete(Table table, ConditionGroup where) Creates an instance of aDeleterecord class.Update(Table table, List<ColumnValue> columnValues, ConditionGroup where) Creates an instance of aUpdaterecord class. -
Uses of ConditionGroup in org.litebridge.orm.api.select.model
Methods in org.litebridge.orm.api.select.model that return ConditionGroupModifier and TypeMethodDescriptionConditionGroupSpec.toConditionGroup(SelectExpressionMapper selectExpressionMapper, Set<Table> selectedTables) Converts this specification into aConditionGroup. -
Uses of ConditionGroup in org.litebridge.orm.persistence
Methods in org.litebridge.orm.persistence with parameters of type ConditionGroupModifier and TypeMethodDescriptionDeleteBuilder.where(ConditionGroup conditionGroup) Sets the conditions for the DELETE statement.