public final class MySqlRow extends Object implements io.r2dbc.spi.Row
Row for MySQL database.| Modifier and Type | Method and Description |
|---|---|
<T> T |
get(int index,
Class<T> type) |
<T> T |
get(int index,
ParameterizedType type)
Returns the value for a column in this row.
|
<T> T |
get(String name,
Class<T> type) |
<T> T |
get(String name,
ParameterizedType type)
Returns the value for a column in this row.
|
io.r2dbc.spi.RowMetadata |
getMetadata() |
public <T> T get(int index,
Class<T> type)
get in interface io.r2dbc.spi.Readablepublic <T> T get(String name, Class<T> type)
get in interface io.r2dbc.spi.Readable@Nullable
public <T> T get(int index,
ParameterizedType type)
T - the type of the item being returned.index - the index of the column starting at 0.type - the parameterized type of item to return.null.IllegalArgumentException - if name or type is null.@Nullable public <T> T get(String name, ParameterizedType type)
T - the type of the item being returned.name - the name of the column.type - the parameterized type of item to return.null.IllegalArgumentException - if name or type is null.public io.r2dbc.spi.RowMetadata getMetadata()
getMetadata in interface io.r2dbc.spi.RowCopyright © 2018–2023 asyncer.io. All rights reserved.