Class RowMapper<T>
- java.lang.Object
-
- io.vertx.reactivex.sqlclient.templates.RowMapper<T>
-
- All Implemented Interfaces:
RxDelegate
public class RowMapper<T> extends Object implements RxDelegate
Map a to an arbitraryT
object.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<RowMapper>
__TYPE_ARG
TypeArg<T>
__typeArg_0
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
RowMapper
getDelegate()
int
hashCode()
T
map(Row row)
Build aT
representation of the givenrow
static <T> RowMapper<T>
newInstance(RowMapper arg)
static <T> RowMapper<T>
newInstance(RowMapper arg, TypeArg<T> __typeArg_T)
String
toString()
-
-
-
Method Detail
-
getDelegate
public RowMapper getDelegate()
- Specified by:
getDelegate
in interfaceRxDelegate
-
map
public T map(Row row)
Build aT
representation of the givenrow
- Parameters:
row
- the row- Returns:
- the object
-
-