Package io.vertx.mutiny.sqlclient
Class RowSet<R>
- java.lang.Object
-
- io.vertx.mutiny.sqlclient.SqlResult<RowSet<R>>
-
- io.vertx.mutiny.sqlclient.RowSet<R>
-
- All Implemented Interfaces:
Iterable<R>
public class RowSet<R> extends SqlResult<RowSet<R>> implements Iterable<R>
The execution result of the row set of a query provided as
, commonly used as aRowSet
. Using a collector query might provide a different result. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<RowSet>
__TYPE_ARG
TypeArg<R>
__typeArg_0
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
io.vertx.sqlclient.RowSet
getDelegate()
int
hashCode()
RowIterator<R>
iterator()
static <R> RowSet<R>
newInstance(io.vertx.sqlclient.RowSet arg)
static <R> RowSet<R>
newInstance(io.vertx.sqlclient.RowSet arg, TypeArg<R> __typeArg_R)
RowSet<R>
next()
io.smallrye.mutiny.Multi<R>
toMulti()
String
toString()
RowSet<R>
value()
-
Methods inherited from class io.vertx.mutiny.sqlclient.SqlResult
columnDescriptors, columnsNames, newInstance, newInstance, property, rowCount, size
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
getDelegate
public io.vertx.sqlclient.RowSet getDelegate()
- Overrides:
getDelegate
in classSqlResult<RowSet<R>>
-
toMulti
public io.smallrye.mutiny.Multi<R> toMulti()
-
iterator
public RowIterator<R> iterator()
-
newInstance
public static <R> RowSet<R> newInstance(io.vertx.sqlclient.RowSet arg)
-
-