Package io.vertx.mutiny.sqlclient
Class SqlResult<T>
java.lang.Object
io.vertx.mutiny.sqlclient.SqlResult<T>
- All Implemented Interfaces:
MutinyDelegate
- Direct Known Subclasses:
RowSet
An interface that represents the execution result of an operation on the database server.
NOTE: This class has been automatically generated from the
original
non Mutiny-ified interface using Vert.x codegen.-
Field Summary
FieldsModifier and TypeFieldDescription -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
io.vertx.sqlclient.SqlResult
int
hashCode()
static <T> SqlResult<T>
newInstance
(io.vertx.sqlclient.SqlResult arg) static <T> SqlResult<T>
newInstance
(io.vertx.sqlclient.SqlResult arg, TypeArg<T> __typeArg_T) next()
<V> V
property
(PropertyKind<V> propertyKind) int
rowCount()
int
size()
toString()
value()
-
Field Details
-
__TYPE_ARG
-
__typeArg_0
-
-
Constructor Details
-
SqlResult
public SqlResult(io.vertx.sqlclient.SqlResult delegate) -
SqlResult
-
SqlResult
-
-
Method Details
-
getDelegate
public io.vertx.sqlclient.SqlResult getDelegate()- Specified by:
getDelegate
in interfaceMutinyDelegate
- Returns:
- the delegate used by this Mutiny object of generated type
-
toString
-
equals
-
hashCode
public int hashCode() -
rowCount
public int rowCount()- Returns:
- the count of affected rows.
-
columnsNames
- Returns:
- the list of names of columns.
-
columnDescriptors
- Returns:
- the list of column descriptors
-
size
public int size()- Returns:
- the count of rows.
-
property
- Parameters:
propertyKind
- the unique object which is used to indicate which property of the execution result to fetch- Returns:
- the value of the property
-
value
- Returns:
- the result value
-
next
- Returns:
- the next available result or
null
if none is available
-
newInstance
-
newInstance
-