Interface RowSet<T>

Type Parameters:
T - the type for reading a row from the set
All Superinterfaces:
AutoCloseable, Closeable, Iterable<T>

public interface RowSet<T>extends Iterable<T>, Closeable
A Row Set represents a set of rows produced by a plan and read from the database. The parameterized type will be RowRecord when reading each row as a map and can be a JSON read handle when reading each row as a JSON document, or an XML read handle when reading each row as a XML document. The parameterized type can also be a JSON or XML IO representation with a registered handle such as a Jackson JsonNode or an XML DOM Document.