Uses of Class
org.apache.camel.component.jooq.db.tables.pojos.BookToBookStore
-
Packages that use BookToBookStore Package Description org.apache.camel.component.jooq.db.tables.daos org.apache.camel.component.jooq.db.tables.pojos org.apache.camel.component.jooq.db.tables.records -
-
Uses of BookToBookStore in org.apache.camel.component.jooq.db.tables.daos
Methods in org.apache.camel.component.jooq.db.tables.daos that return types with arguments of type BookToBookStore Modifier and Type Method Description List<BookToBookStore>BookToBookStoreDao. fetchByBookId(Integer... values)Fetch records that haveBOOK_ID IN (values)List<BookToBookStore>BookToBookStoreDao. fetchByBookStoreName(String... values)Fetch records that haveBOOK_STORE_NAME IN (values)List<BookToBookStore>BookToBookStoreDao. fetchByStock(Integer... values)Fetch records that haveSTOCK IN (values)List<BookToBookStore>BookToBookStoreDao. fetchRangeOfBookId(Integer lowerInclusive, Integer upperInclusive)Fetch records that haveBOOK_ID BETWEEN lowerInclusive AND upperInclusiveList<BookToBookStore>BookToBookStoreDao. fetchRangeOfBookStoreName(String lowerInclusive, String upperInclusive)Fetch records that haveBOOK_STORE_NAME BETWEEN lowerInclusive AND upperInclusiveList<BookToBookStore>BookToBookStoreDao. fetchRangeOfStock(Integer lowerInclusive, Integer upperInclusive)Fetch records that haveSTOCK BETWEEN lowerInclusive AND upperInclusiveMethods in org.apache.camel.component.jooq.db.tables.daos with parameters of type BookToBookStore Modifier and Type Method Description org.jooq.Record2<String,Integer>BookToBookStoreDao. getId(BookToBookStore object) -
Uses of BookToBookStore in org.apache.camel.component.jooq.db.tables.pojos
Constructors in org.apache.camel.component.jooq.db.tables.pojos with parameters of type BookToBookStore Constructor Description BookToBookStore(BookToBookStore value) -
Uses of BookToBookStore in org.apache.camel.component.jooq.db.tables.records
Constructors in org.apache.camel.component.jooq.db.tables.records with parameters of type BookToBookStore Constructor Description BookToBookStoreRecord(BookToBookStore value)Create a detached, initialised BookToBookStoreRecord
-