Package io.vertx.mutiny.sqlclient
Class SqlResult<T>
- java.lang.Object
-
- io.vertx.mutiny.sqlclient.SqlResult<T>
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<SqlResult>
__TYPE_ARG
TypeArg<T>
__typeArg_0
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ColumnDescriptor>
columnDescriptors()
List<String>
columnsNames()
boolean
equals(Object o)
io.vertx.sqlclient.SqlResult
getDelegate()
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)
SqlResult<T>
next()
<V> V
property(PropertyKind<V> propertyKind)
int
rowCount()
int
size()
String
toString()
T
value()
-
-
-
Method Detail
-
getDelegate
public io.vertx.sqlclient.SqlResult getDelegate()
-
rowCount
public int rowCount()
- Returns:
- the count of affected rows.
-
columnDescriptors
public List<ColumnDescriptor> columnDescriptors()
- Returns:
- the list of column descriptors
-
size
public int size()
- Returns:
- the count of rows.
-
property
public <V> V property(PropertyKind<V> propertyKind)
- 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
public T value()
- Returns:
- the result value
-
newInstance
public static <T> SqlResult<T> newInstance(io.vertx.sqlclient.SqlResult arg)
-
-