public interface Row
| Modifier and Type | Method and Description |
|---|---|
default Object |
get(Object identifier)
Returns the value for a column in this row using the default type mapping.
|
<T> T |
get(Object identifier,
Class<T> type)
Returns the value for a column in this row.
|
@Nullable <T> T get(Object identifier, Class<T> type)
T - the type of the item being returnedidentifier - the identifier of the columntype - the type of item to return. This type must be assignable to, and allows for variance.null.IllegalArgumentException - if identifier or type is null@Nullable default Object get(Object identifier)
get(Object, Class) passing Object as the type in
order to allow the implementation to make the loosest possible match.identifier - the identifier of the columnnull.IllegalArgumentException - if identifier or type is nullCopyright © 2019. All rights reserved.