Uses of Class
org.litebridgedb.db.spi.Row
Packages that use Row
Package
Description
Service Provider Interface (SPI) for integrating database drivers with Litebridge
Abstract implementation classes for the Litebridge Database SPI.
Litebridge ORM
Fluent API for constructing SQL queries (SELECT statements) without result object mapping
Persistence subsystem; contains classes for saving/updating/deleting DTOs
-
Uses of Row in org.litebridgedb.db.spi
Methods in org.litebridgedb.db.spi that return RowModifier and TypeMethodDescriptionRow.withColumn(Column column, @Nullable Object value) Add a new column-value pair to the row and return the updated instance.Methods in org.litebridgedb.db.spi that return types with arguments of type Row -
Uses of Row in org.litebridgedb.db.spi.impl
Methods in org.litebridgedb.db.spi.impl that return types with arguments of type RowModifier and TypeMethodDescriptionAbstractDatabaseProvider.select(Select select, ConnectionProvider connectionProvider) -
Uses of Row in org.litebridgedb.orm
Methods in org.litebridgedb.orm with parameters of type Row -
Uses of Row in org.litebridgedb.orm.api.sql
Methods in org.litebridgedb.orm.api.sql that return RowModifier and TypeMethodDescription@Nullable RowSqlSelector.firstOrNull()@Nullable RowSqlSelector.oneOrNull()Methods in org.litebridgedb.orm.api.sql that return types with arguments of type RowConstructor parameters in org.litebridgedb.orm.api.sql with type arguments of type RowModifierConstructorDescriptionSqlJoinClause(SqlJoinSpec joinSpec, org.litebridgedb.orm.api.select.impl.AbstractSelector<Row, SqlSelectSpec> delegate) SqlJoinConditionClauseTerminal(SqlJoinSpec joinSpec, org.litebridgedb.orm.api.select.impl.AbstractSelector<Row, SqlSelectSpec> delegate) -
Uses of Row in org.litebridgedb.orm.persistence
Methods in org.litebridgedb.orm.persistence that return RowMethods in org.litebridgedb.orm.persistence that return types with arguments of type RowModifier and TypeMethodDescriptionTransactionalDatabaseProvider.select(Select select, ConnectionProvider connectionProvider) Methods in org.litebridgedb.orm.persistence with parameters of type RowModifier and TypeMethodDescriptionvoidDtoBlueprint.addJoinedDtoData(DtoJoinSpec dtoJoinSpec, List<Object> primaryKey, Row dtoRow) Method parameters in org.litebridgedb.orm.persistence with type arguments of type RowConstructors in org.litebridgedb.orm.persistence with parameters of type RowModifierConstructorDescriptionDtoBlueprint(DtoSelectSpec dtoSelectSpec, List<Object> primaryKey, Row dtoRow) JoinDtoData(DtoJoinSpec dtoJoinSpec, List<Object> primaryKey, Row dtoRows) SelectDtoData(DtoSelectSpec dtoSelectSpec, List<Object> primaryKey, Row dtoRows)