public final class MySqlRow extends Object implements io.r2dbc.spi.Row
Row for MySQL database.| 修飾子とタイプ | メソッドと説明 |
|---|---|
<T> T |
get(int index,
Class<T> type) |
<T> T |
get(int index,
ParameterizedType type) |
<T> T |
get(String name,
Class<T> type) |
<T> T |
get(String name,
ParameterizedType type) |
public <T> T get(int index,
Class<T> type)
get インタフェース内 io.r2dbc.spi.Row@Nullable public <T> T get(int index, ParameterizedType type)
T - generic type, like Set<String>, List<String> or JSON-Serializable type when JSON serializer valid.index - the column index starting at 0type - must be ParameterizedType linked Ttype specified generic instance.@Nullable public <T> T get(String name, ParameterizedType type)
Copyright © 2018–2020. All rights reserved.