Class BookToBookStoreDao
- java.lang.Object
-
- org.jooq.impl.DAOImpl<BookToBookStoreRecord,BookToBookStore,org.jooq.Record2<String,Integer>>
-
- org.apache.camel.component.jooq.db.tables.daos.BookToBookStoreDao
-
- All Implemented Interfaces:
org.jooq.DAO<BookToBookStoreRecord,BookToBookStore,org.jooq.Record2<String,Integer>>
@Repository public class BookToBookStoreDao extends org.jooq.impl.DAOImpl<BookToBookStoreRecord,BookToBookStore,org.jooq.Record2<String,Integer>>
This class is generated by jOOQ.
-
-
Constructor Summary
Constructors Constructor Description BookToBookStoreDao()Create a new BookToBookStoreDao without any configurationBookToBookStoreDao(org.jooq.Configuration configuration)Create a new BookToBookStoreDao with an attached configuration
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BookToBookStore>fetchByBookId(Integer... values)Fetch records that haveBOOK_ID IN (values)List<BookToBookStore>fetchByBookStoreName(String... values)Fetch records that haveBOOK_STORE_NAME IN (values)List<BookToBookStore>fetchByStock(Integer... values)Fetch records that haveSTOCK IN (values)List<BookToBookStore>fetchRangeOfBookId(Integer lowerInclusive, Integer upperInclusive)Fetch records that haveBOOK_ID BETWEEN lowerInclusive AND upperInclusiveList<BookToBookStore>fetchRangeOfBookStoreName(String lowerInclusive, String upperInclusive)Fetch records that haveBOOK_STORE_NAME BETWEEN lowerInclusive AND upperInclusiveList<BookToBookStore>fetchRangeOfStock(Integer lowerInclusive, Integer upperInclusive)Fetch records that haveSTOCK BETWEEN lowerInclusive AND upperInclusiveorg.jooq.Record2<String,Integer>getId(BookToBookStore object)-
Methods inherited from class org.jooq.impl.DAOImpl
compositeKeyRecord, configuration, count, ctx, delete, delete, delete, 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
-
-
-
-
Method Detail
-
getId
public org.jooq.Record2<String,Integer> getId(BookToBookStore object)
-
fetchRangeOfBookStoreName
public List<BookToBookStore> fetchRangeOfBookStoreName(String lowerInclusive, String upperInclusive)
Fetch records that haveBOOK_STORE_NAME BETWEEN lowerInclusive AND upperInclusive
-
fetchByBookStoreName
public List<BookToBookStore> fetchByBookStoreName(String... values)
Fetch records that haveBOOK_STORE_NAME IN (values)
-
fetchRangeOfBookId
public List<BookToBookStore> fetchRangeOfBookId(Integer lowerInclusive, Integer upperInclusive)
Fetch records that haveBOOK_ID BETWEEN lowerInclusive AND upperInclusive
-
fetchByBookId
public List<BookToBookStore> fetchByBookId(Integer... values)
Fetch records that haveBOOK_ID IN (values)
-
fetchRangeOfStock
public List<BookToBookStore> fetchRangeOfStock(Integer lowerInclusive, Integer upperInclusive)
Fetch records that haveSTOCK BETWEEN lowerInclusive AND upperInclusive
-
fetchByStock
public List<BookToBookStore> fetchByStock(Integer... values)
Fetch records that haveSTOCK IN (values)
-
-