TYPE |
Finder.firstResult() |
Performs the search and returns only the first found item.
|
<T> T |
TypeSafeHashMap.get(Key<T> key) |
<T> T |
TypeSafeMap.get(Key<T> key) |
|
TYPE |
Finder.result() |
Performs the search assuming that it will return a single item and returns it.
|
static <T extends Collection<?>> T |
NotFoundException.throwWhenEmpty(T collection,
String message) |
Throws the NotFoundException when the passed collection is null or empty.
|
static <T extends Collection<?>> T |
NotFoundException.throwWhenEmpty(T collection,
String message,
Object... args) |
Throws the NotFoundException when the passed collection is null or empty.
|
static <T> T |
NotFoundException.throwWhenNull(T object,
String message) |
Throws the NotFoundException when the passed object is null.
|
static <T> T |
NotFoundException.throwWhenNull(T object,
String message,
Object... args) |
Throws the NotFoundException when the passed object is null.
|