Class RowMapper<T>

java.lang.Object
io.vertx.mutiny.sqlclient.templates.RowMapper<T>
All Implemented Interfaces:
MutinyDelegate

public class RowMapper<T> extends Object implements MutinyDelegate
Map a to an arbitrary T object.

NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

  • Field Details

  • Constructor Details

    • RowMapper

      public RowMapper(io.vertx.sqlclient.templates.RowMapper delegate)
    • RowMapper

      public RowMapper(Object delegate, TypeArg<T> typeArg_0)
    • RowMapper

      public RowMapper(io.vertx.sqlclient.templates.RowMapper delegate, TypeArg<T> typeArg_0)
  • Method Details

    • getDelegate

      public io.vertx.sqlclient.templates.RowMapper getDelegate()
      Specified by:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate used by this Mutiny object of generated type
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • map

      public T map(Row row)
      Parameters:
      row - the row
      Returns:
      the object
    • newInstance

      public static <T> RowMapper<T> newInstance(io.vertx.sqlclient.templates.RowMapper arg)
    • newInstance

      public static <T> RowMapper<T> newInstance(io.vertx.sqlclient.templates.RowMapper arg, TypeArg<T> __typeArg_T)