List<Author> |
AuthorDao.fetchByAddress(String... values) |
Fetch records that have ADDRESS IN (values)
|
List<Author> |
AuthorDao.fetchByDateOfBirth(LocalDate... values) |
Fetch records that have DATE_OF_BIRTH IN (values)
|
List<Author> |
AuthorDao.fetchByFirstName(String... values) |
Fetch records that have FIRST_NAME IN (values)
|
List<Author> |
AuthorDao.fetchById(Integer... values) |
Fetch records that have ID IN (values)
|
List<Author> |
AuthorDao.fetchByLastName(String... values) |
Fetch records that have LAST_NAME IN (values)
|
List<Author> |
AuthorDao.fetchByYearOfBirth(Integer... values) |
Fetch records that have YEAR_OF_BIRTH IN (values)
|
Optional<Author> |
AuthorDao.fetchOptionalById(Integer value) |
Fetch a unique record that has ID = value
|
List<Author> |
AuthorDao.fetchRangeOfAddress(String lowerInclusive,
String upperInclusive) |
Fetch records that have ADDRESS BETWEEN lowerInclusive AND
upperInclusive
|
List<Author> |
AuthorDao.fetchRangeOfDateOfBirth(LocalDate lowerInclusive,
LocalDate upperInclusive) |
Fetch records that have DATE_OF_BIRTH BETWEEN lowerInclusive AND
upperInclusive
|
List<Author> |
AuthorDao.fetchRangeOfFirstName(String lowerInclusive,
String upperInclusive) |
Fetch records that have FIRST_NAME BETWEEN lowerInclusive AND
upperInclusive
|
List<Author> |
AuthorDao.fetchRangeOfId(Integer lowerInclusive,
Integer upperInclusive) |
Fetch records that have ID BETWEEN lowerInclusive AND
upperInclusive
|
List<Author> |
AuthorDao.fetchRangeOfLastName(String lowerInclusive,
String upperInclusive) |
Fetch records that have LAST_NAME BETWEEN lowerInclusive AND
upperInclusive
|
List<Author> |
AuthorDao.fetchRangeOfYearOfBirth(Integer lowerInclusive,
Integer upperInclusive) |
Fetch records that have YEAR_OF_BIRTH BETWEEN lowerInclusive AND
upperInclusive
|