Class SqlResult<T>

  • Direct Known Subclasses:
    RowSet

    public class SqlResult<T>
    extends Object
    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.

    • Constructor Detail

      • SqlResult

        public SqlResult​(io.vertx.sqlclient.SqlResult delegate)
      • SqlResult

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

        public SqlResult​(io.vertx.sqlclient.SqlResult delegate,
                         TypeArg<T> typeArg_0)
    • Method Detail

      • getDelegate

        public io.vertx.sqlclient.SqlResult getDelegate()
      • hashCode

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

        public int rowCount()
        Returns:
        the count of affected rows.
      • columnsNames

        public List<String> columnsNames()
        Returns:
        the list of names of columns.
      • 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
      • next

        public SqlResult<T> next()
        Returns:
        the next available result or null if none is available
      • newInstance

        public static <T> SqlResult<T> newInstance​(io.vertx.sqlclient.SqlResult arg)
      • newInstance

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