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
ConstructorsConstructorDescriptionCreate a new BookToBookStoreDao without any configurationBookToBookStoreDao(org.jooq.Configuration configuration) Create a new BookToBookStoreDao with an attached configuration -
Method Summary
Modifier and TypeMethodDescriptionfetchByBookId(Integer... values) Fetch records that haveBOOK_ID IN (values)fetchByBookStoreName(String... values) Fetch records that haveBOOK_STORE_NAME IN (values)fetchByStock(Integer... values) Fetch records that haveSTOCK IN (values)fetchRangeOfBookId(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveBOOK_ID BETWEEN lowerInclusive AND upperInclusivefetchRangeOfBookStoreName(String lowerInclusive, String upperInclusive) Fetch records that haveBOOK_STORE_NAME BETWEEN lowerInclusive AND upperInclusivefetchRangeOfStock(Integer lowerInclusive, Integer upperInclusive) Fetch records that haveSTOCK BETWEEN lowerInclusive AND upperInclusivegetId(BookToBookStore 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
-
BookToBookStoreDao
public BookToBookStoreDao()Create a new BookToBookStoreDao without any configuration -
BookToBookStoreDao
@Autowired public BookToBookStoreDao(org.jooq.Configuration configuration) Create a new BookToBookStoreDao with an attached configuration
-
-
Method Details
-
getId
-
fetchRangeOfBookStoreName
public List<BookToBookStore> fetchRangeOfBookStoreName(String lowerInclusive, String upperInclusive) Fetch records that haveBOOK_STORE_NAME BETWEEN lowerInclusive AND upperInclusive -
fetchByBookStoreName
Fetch records that haveBOOK_STORE_NAME IN (values) -
fetchRangeOfBookId
Fetch records that haveBOOK_ID BETWEEN lowerInclusive AND upperInclusive -
fetchByBookId
Fetch records that haveBOOK_ID IN (values) -
fetchRangeOfStock
Fetch records that haveSTOCK BETWEEN lowerInclusive AND upperInclusive -
fetchByStock
Fetch records that haveSTOCK IN (values)
-