Class ProjectImageDao
java.lang.Object
org.jooq.impl.DAOImpl<ProjectImageRecord,ProjectImage,Integer>
org.trustdeck.jooq.generated.tables.daos.ProjectImageDao
- All Implemented Interfaces:
org.jooq.DAO<ProjectImageRecord,ProjectImage, Integer>
This class is generated by jOOQ.
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new ProjectImageDao without any configurationProjectImageDao(org.jooq.Configuration configuration) Create a new ProjectImageDao with an attached configuration -
Method Summary
Modifier and TypeMethodDescriptionFetch records that haveid IN (values)fetchByImage(byte[]... values) Fetch records that haveimage IN (values)fetchByImageSizeBytes(Integer... values) Fetch records that haveimage_size_bytes IN (values)fetchByMimeType(String... values) Fetch records that havemime_type IN (values)fetchByProjectId(Integer... values) Fetch records that haveproject_id IN (values)fetchOneById(Integer value) Fetch a unique record that hasid = valuefetchOneByProjectId(Integer value) Fetch a unique record that hasproject_id = valuefetchOptionalById(Integer value) Fetch a unique record that hasid = valuefetchOptionalByProjectId(Integer value) Fetch a unique record that hasproject_id = valuefetchRangeOfId(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveid BETWEEN lowerInclusive AND upperInclusivefetchRangeOfImage(byte[] lowerInclusive, byte[] upperInclusive) Fetch records that haveimage BETWEEN lowerInclusive AND upperInclusivefetchRangeOfImageSizeBytes(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveimage_size_bytes BETWEEN lowerInclusive AND upperInclusivefetchRangeOfMimeType(String lowerInclusive, String upperInclusive) Fetch records that havemime_type BETWEEN lowerInclusive AND upperInclusivefetchRangeOfProjectId(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveproject_id BETWEEN lowerInclusive AND upperInclusivegetId(ProjectImage object) Methods inherited from class org.jooq.impl.DAOImpl
compositeKeyRecord, configuration, count, ctx, delete, delete, delete, deleteById, deleteById, deleteById, dialect, exists, existsById, family, fetch, fetch, fetchOne, fetchOptional, fetchRange, findAll, findById, findOptionalById, getTable, getType, insert, insert, insert, mapper, merge, merge, merge, setConfiguration, settings, update, update, update
-
Constructor Details
-
ProjectImageDao
public ProjectImageDao()Create a new ProjectImageDao without any configuration -
ProjectImageDao
public ProjectImageDao(org.jooq.Configuration configuration) Create a new ProjectImageDao with an attached configuration
-
-
Method Details
-
getId
-
fetchRangeOfId
Fetch records that haveid BETWEEN lowerInclusive AND upperInclusive -
fetchById
Fetch records that haveid IN (values) -
fetchOneById
Fetch a unique record that hasid = value -
fetchOptionalById
Fetch a unique record that hasid = value -
fetchRangeOfProjectId
Fetch records that haveproject_id BETWEEN lowerInclusive AND upperInclusive -
fetchByProjectId
Fetch records that haveproject_id IN (values) -
fetchOneByProjectId
Fetch a unique record that hasproject_id = value -
fetchOptionalByProjectId
Fetch a unique record that hasproject_id = value -
fetchRangeOfImage
Fetch records that haveimage BETWEEN lowerInclusive AND upperInclusive -
fetchByImage
Fetch records that haveimage IN (values) -
fetchRangeOfImageSizeBytes
public List<ProjectImage> fetchRangeOfImageSizeBytes(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveimage_size_bytes BETWEEN lowerInclusive AND upperInclusive -
fetchByImageSizeBytes
Fetch records that haveimage_size_bytes IN (values) -
fetchRangeOfMimeType
Fetch records that havemime_type BETWEEN lowerInclusive AND upperInclusive -
fetchByMimeType
Fetch records that havemime_type IN (values)
-