Package | Description |
---|---|
org.springframework.dao.support |
Support classes for DAO implementations,
providing miscellaneous utility methods.
|
Modifier and Type | Method and Description |
---|---|
static int |
DataAccessUtils.intResult(Collection<?> results)
Return a unique int result from the given Collection.
|
static long |
DataAccessUtils.longResult(Collection<?> results)
Return a unique long result from the given Collection.
|
static <T> T |
DataAccessUtils.objectResult(Collection<?> results,
Class<T> requiredType)
Return a unique result object from the given Collection.
|