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 theoriginalnon Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<RowSet>__TYPE_ARGTypeArg<R>__typeArg_0
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)io.vertx.sqlclient.RowSetgetDelegate()inthashCode()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()StringtoString()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:
getDelegatein classSqlResult<RowSet<R>>
-
toMulti
@CheckReturnValue public io.smallrye.mutiny.Multi<R> toMulti()
-
iterator
public RowIterator<R> iterator()
-
newInstance
public static <R> RowSet<R> newInstance(io.vertx.sqlclient.RowSet arg)
-
-