List<Book> |
BookDao.fetchByAuthorId(Integer... values) |
Fetch records that have AUTHOR_ID IN (values)
|
List<Book> |
BookDao.fetchByCoAuthorId(Integer... values) |
Fetch records that have CO_AUTHOR_ID IN (values)
|
List<Book> |
BookDao.fetchByContentPdf(byte[]... values) |
Fetch records that have CONTENT_PDF IN (values)
|
List<Book> |
BookDao.fetchByContentText(String... values) |
Fetch records that have CONTENT_TEXT IN (values)
|
List<Book> |
BookDao.fetchByDetailsId(Integer... values) |
Fetch records that have DETAILS_ID IN (values)
|
List<Book> |
BookDao.fetchById(Integer... values) |
Fetch records that have ID IN (values)
|
List<Book> |
BookDao.fetchByLanguageId(Integer... values) |
Fetch records that have LANGUAGE_ID IN (values)
|
List<Book> |
BookDao.fetchByPublishedIn(Integer... values) |
Fetch records that have PUBLISHED_IN IN (values)
|
List<Book> |
BookDao.fetchByRecTimestamp(LocalDateTime... values) |
Fetch records that have REC_TIMESTAMP IN (values)
|
List<Book> |
BookDao.fetchByRecVersion(Integer... values) |
Fetch records that have REC_VERSION IN (values)
|
List<Book> |
BookDao.fetchByTitle(String... values) |
Fetch records that have TITLE IN (values)
|
Optional<Book> |
BookDao.fetchOptionalById(Integer value) |
Fetch a unique record that has ID = value
|
List<Book> |
BookDao.fetchRangeOfAuthorId(Integer lowerInclusive,
Integer upperInclusive) |
Fetch records that have AUTHOR_ID BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfCoAuthorId(Integer lowerInclusive,
Integer upperInclusive) |
Fetch records that have CO_AUTHOR_ID BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfContentPdf(byte[] lowerInclusive,
byte[] upperInclusive) |
Fetch records that have CONTENT_PDF BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfContentText(String lowerInclusive,
String upperInclusive) |
Fetch records that have CONTENT_TEXT BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfDetailsId(Integer lowerInclusive,
Integer upperInclusive) |
Fetch records that have DETAILS_ID BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfId(Integer lowerInclusive,
Integer upperInclusive) |
Fetch records that have ID BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfLanguageId(Integer lowerInclusive,
Integer upperInclusive) |
Fetch records that have LANGUAGE_ID BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfPublishedIn(Integer lowerInclusive,
Integer upperInclusive) |
Fetch records that have PUBLISHED_IN BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfRecTimestamp(LocalDateTime lowerInclusive,
LocalDateTime upperInclusive) |
Fetch records that have REC_TIMESTAMP BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfRecVersion(Integer lowerInclusive,
Integer upperInclusive) |
Fetch records that have REC_VERSION BETWEEN lowerInclusive AND
upperInclusive
|
List<Book> |
BookDao.fetchRangeOfTitle(String lowerInclusive,
String upperInclusive) |
Fetch records that have TITLE BETWEEN lowerInclusive AND
upperInclusive
|