Java io.vertx.sqlclient Tuple fields, constructors, methods, implement or subclass

Example usage for Java io.vertx.sqlclient Tuple fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.vertx.sqlclient Tuple.

The text is from its open source code.

Field

ObjectJSON_NULL
The JSON null literal value.

Method

TupleaddStringArray(String[] value)
Add an array of String value at the end of the tuple.
Tget(Class type, int pos)
IntegergetInteger(int pos)
Get an integer value at pos .
String[]getStringArray(int pos)
Get an array of String value at pos .
ObjectgetValue(int pos)
Get an object value at pos .
Tupleof(Object elt1)
Create a tuple of one element.
Tupleof(Object elt1, Object elt2, Object elt3)
Create a tuple of three elements.
Tupleof(Object elt1, Object elt2)
Create a tuple of two elements.
Tupleof(Object elt1, Object... elts)
Create a tuple of an arbitrary number of elements.