Class RowIterator<R>

java.lang.Object
io.vertx.mutiny.sqlclient.RowIterator<R>
All Implemented Interfaces:
MutinyDelegate, Iterator<R>

public class RowIterator<R> extends Object implements Iterator<R>, MutinyDelegate
An iterator for processing rows.

NOTE: This class has been automatically generated from the original non Mutiny-ified interface.

See Also:
  • RowIterator
  • Field Details

  • Constructor Details

    • RowIterator

      public RowIterator(io.vertx.sqlclient.RowIterator<R> delegate)
      Create a new instance of RowIterator delegating to the given (non-null) instance of RowIterator.
    • RowIterator

      public RowIterator(io.vertx.sqlclient.RowIterator<R> delegate, TypeArg<R> typeArg_0)
    • RowIterator

      public RowIterator(Object delegate, TypeArg<R> typeArg_0)
  • Method Details

    • getDelegate

      public io.vertx.sqlclient.RowIterator<R> getDelegate()
      Get the delegate instance.

      This method returns the instance on which this shim is delegating the calls. And so, give you access to the bare API.

      Specified by:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate instance
    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator<R>
    • next

      public R next()
      Specified by:
      next in interface Iterator<R>
    • newInstance

      public static <R> RowIterator<R> newInstance(io.vertx.sqlclient.RowIterator<R> delegate)
      Creates a new instance of the RowIterator.
    • newInstance

      public static <R> RowIterator<R> newInstance(io.vertx.sqlclient.RowIterator<R> delegate, TypeArg<R> typeArg_0)
      Creates a new instance of the RowIterator.
    • hashCode

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

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object