Tuple |
Tuple.addArrayOfBigDecimal(BigDecimal[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfBoolean(Boolean[] value) |
Add an array of Boolean value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfDouble(Double[] value) |
Add an array of Double value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfFloat(Float[] value) |
Add an array of Float value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfInteger(Integer[] value) |
Add an array of Integer value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfJsonArray(JsonArray[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfJsonObject(JsonObject[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfLocalDate(java.time.LocalDate[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfLocalDateTime(java.time.LocalDateTime[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfLocalTime(java.time.LocalTime[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfLong(Long[] value) |
Add an array of Long value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfOffsetDateTime(java.time.OffsetDateTime[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfOffsetTime(java.time.OffsetTime[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfShort(Short[] value) |
Add an array of Short value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfString(String[] value) |
Add an array of String value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfTemporal(java.time.temporal.Temporal[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addArrayOfUUID(UUID[] value) |
Add an array of value at the end of the tuple.
|
Tuple |
Tuple.addBigDecimal(BigDecimal value) |
Add a value at the end of the tuple.
|
Tuple |
Tuple.addBoolean(Boolean value) |
Add a boolean value at the end of the tuple.
|
Tuple |
Tuple.addBuffer(Buffer value) |
Add a buffer value at the end of the tuple.
|
Tuple |
Tuple.addDouble(Double value) |
Add a double value at the end of the tuple.
|
Tuple |
Tuple.addFloat(Float value) |
Add a float value at the end of the tuple.
|
Tuple |
Tuple.addInteger(Integer value) |
Add an integer value at the end of the tuple.
|
Tuple |
Tuple.addJsonArray(JsonArray value) |
Add a value at the end of the tuple.
|
Tuple |
Tuple.addJsonObject(JsonObject value) |
Add a value at the end of the tuple.
|
Tuple |
Tuple.addLocalDate(java.time.LocalDate value) |
Add a LocalDate value at the end of the tuple.
|
Tuple |
Tuple.addLocalDateTime(java.time.LocalDateTime value) |
Add a LocalDateTime value at the end of the tuple.
|
Tuple |
Tuple.addLocalTime(java.time.LocalTime value) |
Add a LocalTime value at the end of the tuple.
|
Tuple |
Tuple.addLong(Long value) |
Add a long value at the end of the tuple.
|
Tuple |
Tuple.addOffsetDateTime(java.time.OffsetDateTime value) |
Add a OffsetDateTime value at the end of the tuple.
|
Tuple |
Tuple.addOffsetTime(java.time.OffsetTime value) |
Add a OffsetTime value at the end of the tuple.
|
Tuple |
Tuple.addShort(Short value) |
Add a short value at the end of the tuple.
|
Tuple |
Tuple.addString(String value) |
Add a string value at the end of the tuple.
|
Tuple |
Tuple.addTemporal(java.time.temporal.Temporal value) |
Add a Temporal value at the end of the tuple.
|
Tuple |
Tuple.addUUID(UUID value) |
Add a UUID value at the end of the tuple.
|
Tuple |
Tuple.addValue(Object value) |
Add an object value at the end of the tuple.
|
static Tuple |
Tuple.from(Object[] array) |
Wrap the provided array with a tuple.
|
static <T> Tuple |
Tuple.from(List<T> list) |
Wrap the provided list with a tuple.
|
static Tuple |
Tuple.newInstance(Tuple arg) |
|
static Tuple |
Tuple.of(Object elt1) |
Create a tuple of one element.
|
static Tuple |
Tuple.of(Object elt1,
Object elt2) |
Create a tuple of two elements.
|
static Tuple |
Tuple.of(Object elt1,
Object elt2,
Object elt3) |
Create a tuple of three elements.
|
static Tuple |
Tuple.of(Object elt1,
Object elt2,
Object elt3,
Object elt4) |
Create a tuple of four elements.
|
static Tuple |
Tuple.of(Object elt1,
Object elt2,
Object elt3,
Object elt4,
Object elt5) |
Create a tuple of five elements.
|
static Tuple |
Tuple.of(Object elt1,
Object elt2,
Object elt3,
Object elt4,
Object elt5,
Object elt6) |
Create a tuple of six elements.
|
static Tuple |
Tuple.tuple() |
|
static Tuple |
Tuple.tuple(List<Object> elements) |
Create a tuple with the provided elements list.
|
static Tuple |
Tuple.wrap(Object[] array) |
Wrap the provided array with a tuple.
|
static <T> Tuple |
Tuple.wrap(List<T> list) |
Wrap the provided list with a tuple.
|