Class BookStoreDao
- java.lang.Object
-
- org.jooq.impl.DAOImpl<BookStoreRecord,BookStore,String>
-
- org.apache.camel.component.jooq.db.tables.daos.BookStoreDao
-
- All Implemented Interfaces:
org.jooq.DAO<BookStoreRecord,BookStore,String>
@Repository public class BookStoreDao extends org.jooq.impl.DAOImpl<BookStoreRecord,BookStore,String>
This class is generated by jOOQ.
-
-
Constructor Summary
Constructors Constructor Description BookStoreDao()Create a new BookStoreDao without any configurationBookStoreDao(org.jooq.Configuration configuration)Create a new BookStoreDao with an attached configuration
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BookStore>fetchByName(String... values)Fetch records that haveNAME IN (values)BookStorefetchOneByName(String value)Fetch a unique record that hasNAME = valueOptional<BookStore>fetchOptionalByName(String value)Fetch a unique record that hasNAME = valueList<BookStore>fetchRangeOfName(String lowerInclusive, String upperInclusive)Fetch records that haveNAME BETWEEN lowerInclusive AND upperInclusiveStringgetId(BookStore 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
-
fetchRangeOfName
public List<BookStore> fetchRangeOfName(String lowerInclusive, String upperInclusive)
Fetch records that haveNAME BETWEEN lowerInclusive AND upperInclusive
-
fetchByName
public List<BookStore> fetchByName(String... values)
Fetch records that haveNAME IN (values)
-
fetchOneByName
public BookStore fetchOneByName(String value)
Fetch a unique record that hasNAME = value
-
-