Uses of Class
org.apache.camel.component.jooq.db.tables.pojos.Author
Packages that use Author
Package
Description
-
Uses of Author in org.apache.camel.component.jooq.db.tables.daos
Methods in org.apache.camel.component.jooq.db.tables.daos that return AuthorModifier and TypeMethodDescriptionAuthorDao.fetchOneById(Integer value) Fetch a unique record that hasID = valueMethods in org.apache.camel.component.jooq.db.tables.daos that return types with arguments of type AuthorModifier and TypeMethodDescriptionAuthorDao.fetchByAddress(String... values) Fetch records that haveADDRESS IN (values)AuthorDao.fetchByDateOfBirth(LocalDate... values) Fetch records that haveDATE_OF_BIRTH IN (values)AuthorDao.fetchByFirstName(String... values) Fetch records that haveFIRST_NAME IN (values)Fetch records that haveID IN (values)AuthorDao.fetchByLastName(String... values) Fetch records that haveLAST_NAME IN (values)AuthorDao.fetchByYearOfBirth(Integer... values) Fetch records that haveYEAR_OF_BIRTH IN (values)AuthorDao.fetchOptionalById(Integer value) Fetch a unique record that hasID = valueAuthorDao.fetchRangeOfAddress(String lowerInclusive, String upperInclusive) Fetch records that haveADDRESS BETWEEN lowerInclusive AND upperInclusiveAuthorDao.fetchRangeOfDateOfBirth(LocalDate lowerInclusive, LocalDate upperInclusive) Fetch records that haveDATE_OF_BIRTH BETWEEN lowerInclusive AND upperInclusiveAuthorDao.fetchRangeOfFirstName(String lowerInclusive, String upperInclusive) Fetch records that haveFIRST_NAME BETWEEN lowerInclusive AND upperInclusiveAuthorDao.fetchRangeOfId(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveID BETWEEN lowerInclusive AND upperInclusiveAuthorDao.fetchRangeOfLastName(String lowerInclusive, String upperInclusive) Fetch records that haveLAST_NAME BETWEEN lowerInclusive AND upperInclusiveAuthorDao.fetchRangeOfYearOfBirth(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveYEAR_OF_BIRTH BETWEEN lowerInclusive AND upperInclusiveMethods in org.apache.camel.component.jooq.db.tables.daos with parameters of type Author -
Uses of Author in org.apache.camel.component.jooq.db.tables.pojos
Constructors in org.apache.camel.component.jooq.db.tables.pojos with parameters of type Author -
Uses of Author in org.apache.camel.component.jooq.db.tables.records
Constructors in org.apache.camel.component.jooq.db.tables.records with parameters of type AuthorModifierConstructorDescriptionAuthorRecord(Author value) Create a detached, initialised AuthorRecord