public interface Tuple
Modifier and Type | Field and Description |
---|---|
static Object |
JSON_NULL
The JSON null literal value.
|
Modifier and Type | Method and Description |
---|---|
default Tuple |
addArrayOfBigDecimal(BigDecimal[] value)
Add an array of
BigDecimal value at the end of the tuple. |
default Tuple |
addArrayOfBoolean(Boolean[] value)
Add an array of
Boolean value at the end of the tuple. |
default Tuple |
addArrayOfBuffer(Buffer[] value)
Add an array of
Buffer value at the end of the tuple. |
default Tuple |
addArrayOfDouble(Double[] value)
Add an array of
Double value at the end of the tuple. |
default Tuple |
addArrayOfFloat(Float[] value)
Add an array of
Float value at the end of the tuple. |
default Tuple |
addArrayOfInteger(Integer[] value)
Add an array of
Integer value at the end of the tuple. |
default Tuple |
addArrayOfLocalDate(java.time.LocalDate[] value)
Add an array of
LocalDate value at the end of the tuple. |
default Tuple |
addArrayOfLocalDateTime(java.time.LocalDateTime[] value)
Add an array of
LocalDateTime value at the end of the tuple. |
default Tuple |
addArrayOfLocalTime(java.time.LocalTime[] value)
Add an array of
LocalTime value at the end of the tuple. |
default Tuple |
addArrayOfLong(Long[] value)
Add an array of
Long value at the end of the tuple. |
default Tuple |
addArrayOfOffsetDateTime(java.time.OffsetDateTime[] value)
Add an array of
OffsetDateTime value at the end of the tuple. |
default Tuple |
addArrayOfOffsetTime(java.time.OffsetTime[] value)
Add an array of
OffsetTime value at the end of the tuple. |
default Tuple |
addArrayOfShort(Short[] value)
Add an array of
Short value at the end of the tuple. |
default Tuple |
addArrayOfString(String[] value)
Add an array of
String value at the end of the tuple. |
default Tuple |
addArrayOfTemporal(java.time.temporal.Temporal[] value)
Add an array of
Temporal value at the end of the tuple. |
default Tuple |
addArrayOfUUID(UUID[] value)
Add an array of
UUID value at the end of the tuple. |
default Tuple |
addBigDecimal(BigDecimal value)
Add a
BigDecimal value at the end of the tuple. |
default Tuple |
addBigDecimalArray(BigDecimal[] value)
Deprecated.
instead use
addArrayOfBigDecimal(BigDecimal[]) |
default Tuple |
addBoolean(Boolean value)
Add a boolean value at the end of the tuple.
|
default Tuple |
addBooleanArray(Boolean[] value)
Deprecated.
instead use
addArrayOfBoolean(Boolean[]) |
default Tuple |
addBuffer(Buffer value)
Add a buffer value at the end of the tuple.
|
default Tuple |
addBufferArray(Buffer[] value)
Deprecated.
instead use
addArrayOfBuffer(Buffer[]) |
default Tuple |
addDouble(Double value)
Add a double value at the end of the tuple.
|
default Tuple |
addDoubleArray(Double[] value)
Deprecated.
instead use
addArrayOfDouble(Double[]) |
default Tuple |
addFloat(Float value)
Add a float value at the end of the tuple.
|
default Tuple |
addFloatArray(Float[] value)
Deprecated.
instead use
addArrayOfFloat(Float[]) |
default Tuple |
addInteger(Integer value)
Add an integer value at the end of the tuple.
|
default Tuple |
addIntegerArray(Integer[] value)
Deprecated.
instead use
addArrayOfInteger(Integer[]) |
default Tuple |
addLocalDate(java.time.LocalDate value)
Add a
LocalDate value at the end of the tuple. |
default Tuple |
addLocalDateArray(java.time.LocalDate[] value)
Deprecated.
instead use
addArrayOfLocalDate(LocalDate[]) |
default Tuple |
addLocalDateTime(java.time.LocalDateTime value)
Add a
LocalDateTime value at the end of the tuple. |
default Tuple |
addLocalDateTimeArray(java.time.LocalDateTime[] value)
Deprecated.
instead use
addArrayOfLocalDateTime(LocalDateTime[]) |
default Tuple |
addLocalTime(java.time.LocalTime value)
Add a
LocalTime value at the end of the tuple. |
default Tuple |
addLocalTimeArray(java.time.LocalTime[] value)
Deprecated.
instead use
addArrayOfLocalTime(LocalTime[]) |
default Tuple |
addLong(Long value)
Add a long value at the end of the tuple.
|
default Tuple |
addLongArray(Long[] value)
Deprecated.
instead use
addArrayOfLong(Long[]) |
default Tuple |
addOffsetDateTime(java.time.OffsetDateTime value)
Add a
OffsetDateTime value at the end of the tuple. |
default Tuple |
addOffsetDateTimeArray(java.time.OffsetDateTime[] value)
Deprecated.
instead use
addArrayOfOffsetDateTime(OffsetDateTime[]) |
default Tuple |
addOffsetTime(java.time.OffsetTime value)
Add a
OffsetTime value at the end of the tuple. |
default Tuple |
addOffsetTimeArray(java.time.OffsetTime[] value)
Deprecated.
instead use
addArrayOfOffsetTime(OffsetTime[]) |
default Tuple |
addShort(Short value)
Add a short value at the end of the tuple.
|
default Tuple |
addShortArray(Short[] value)
Deprecated.
instead use
addArrayOfShort(Short[]) |
default Tuple |
addString(String value)
Add a string value at the end of the tuple.
|
default Tuple |
addStringArray(String[] value)
Deprecated.
instead use
addArrayOfString(String[]) |
default Tuple |
addTemporal(java.time.temporal.Temporal value)
Add a
Temporal value at the end of the tuple. |
default Tuple |
addTemporalArray(java.time.temporal.Temporal[] value)
Deprecated.
instead use
addArrayOfTemporal(Temporal[]) |
default Tuple |
addUUID(UUID value)
Add a
UUID value at the end of the tuple. |
default Tuple |
addUUIDArray(UUID[] value)
Deprecated.
instead use
addArrayOfUUID(UUID[]) |
Tuple |
addValue(Object value)
Add an object value at the end of the tuple.
|
default <T> Tuple |
addValues(T[] value) |
void |
clear() |
default String |
deepToString() |
default <T> T |
get(Class<T> type,
int pos) |
default BigDecimal[] |
getArrayOfBigDecimals(int pos)
Get an array of
BigDecimal value at pos . |
default Boolean[] |
getArrayOfBooleans(int pos)
Get an array of
Boolean value at pos . |
default Buffer[] |
getArrayOfBuffers(int pos)
Get an array of
Buffer value at pos . |
default Double[] |
getArrayOfDoubles(int pos)
Get an array of
Double value at pos . |
default Float[] |
getArrayOfFloats(int pos)
Get an array of
Float value at pos . |
default Integer[] |
getArrayOfIntegers(int pos)
Get an array of
Integer value at pos . |
default Object[] |
getArrayOfJsons(int pos)
Get an array of JSON elements at
pos , the element might be null or one of the following types:
String
Number
JsonObject
JsonArray
Boolean
|
default java.time.LocalDate[] |
getArrayOfLocalDates(int pos)
Get an array of
LocalDate value at pos . |
default java.time.LocalDateTime[] |
getArrayOfLocalDateTimes(int pos)
Get an array of
LocalDateTime value at pos . |
default java.time.LocalTime[] |
getArrayOfLocalTimes(int pos)
Get an array of
LocalTime value at pos . |
default Long[] |
getArrayOfLongs(int pos)
Get an array of
Long value at pos . |
default Numeric[] |
getArrayOfNumerics(int pos)
Get an array of
Numeric value at pos . |
default java.time.OffsetDateTime[] |
getArrayOfOffsetDateTimes(int pos)
Get an array of
OffsetDateTime value at pos . |
default java.time.OffsetTime[] |
getArrayOfOffsetTimes(int pos)
Get an array of
OffsetTime value at pos . |
default Short[] |
getArrayOfShorts(int pos)
Get an array of
Short value at pos . |
default String[] |
getArrayOfStrings(int pos)
Get an array of
String value at pos . |
default java.time.temporal.Temporal[] |
getArrayOfTemporals(int pos)
Get an array of
Temporal value at pos . |
default UUID[] |
getArrayOfUUIDs(int pos)
Get an array of
UUID value at pos . |
default BigDecimal |
getBigDecimal(int pos)
Get
BigDecimal value at pos . |
default BigDecimal[] |
getBigDecimalArray(int pos)
Deprecated.
instead use
getArrayOfBigDecimals(int) |
default Boolean |
getBoolean(int pos)
Get a boolean value at
pos . |
default Boolean[] |
getBooleanArray(int pos)
Deprecated.
instead use
getArrayOfBooleans(int) |
default Buffer |
getBuffer(int pos)
Get a buffer value at
pos . |
default Buffer[] |
getBufferArray(int pos)
Deprecated.
instead use
getArrayOfBuffers(int) |
default Double |
getDouble(int pos)
Get a double value at
pos . |
default Double[] |
getDoubleArray(int pos)
Deprecated.
instead use
getArrayOfDoubles(int) |
default Float |
getFloat(int pos)
Get a float value at
pos . |
default Float[] |
getFloatArray(int pos)
Deprecated.
instead use
getArrayOfFloats(int) |
default Integer |
getInteger(int pos)
Get an integer value at
pos . |
default Integer[] |
getIntegerArray(int pos)
Deprecated.
instead use
getArrayOfIntegers(int) |
default Object |
getJson(int pos)
Get a JSON element at
pos , the element might be null or one of the following types:
String
Number
JsonObject
JsonArray
Boolean
|
default java.time.LocalDate |
getLocalDate(int pos)
Get
LocalDate value at pos . |
default java.time.LocalDate[] |
getLocalDateArray(int pos)
Deprecated.
instead use
getArrayOfLocalDates(int) |
default java.time.LocalDateTime |
getLocalDateTime(int pos)
Get
LocalDateTime value at pos . |
default java.time.LocalDateTime[] |
getLocalDateTimeArray(int pos)
Deprecated.
instead use
getArrayOfLocalDateTimes(int) |
default java.time.LocalTime |
getLocalTime(int pos)
Get
LocalTime value at pos . |
default java.time.LocalTime[] |
getLocalTimeArray(int pos)
Deprecated.
instead use
getArrayOfLocalTimes(int) |
default Long |
getLong(int pos)
Get a long value at
pos . |
default Long[] |
getLongArray(int pos)
Deprecated.
instead use
getArrayOfLongs(int) |
default Numeric |
getNumeric(int pos)
Get
Numeric value at pos . |
default Numeric[] |
getNumericArray(int pos)
Deprecated.
instead use
getArrayOfNumerics(int) |
default java.time.OffsetDateTime |
getOffsetDateTime(int pos)
Get
OffsetDateTime value at pos . |
default java.time.OffsetDateTime[] |
getOffsetDateTimeArray(int pos)
Deprecated.
instead use
getArrayOfOffsetDateTimes(int) |
default java.time.OffsetTime |
getOffsetTime(int pos)
Get
OffsetTime value at pos . |
default java.time.OffsetTime[] |
getOffsetTimeArray(int pos)
Deprecated.
instead use
getArrayOfOffsetTimes(int) |
default Short |
getShort(int pos)
Get a short value at
pos . |
default Short[] |
getShortArray(int pos)
Deprecated.
instead use
getArrayOfShorts(int) |
default String |
getString(int pos)
Get a string value at
pos . |
default String[] |
getStringArray(int pos)
Deprecated.
instead use
getArrayOfStrings(int) |
default java.time.temporal.Temporal |
getTemporal(int pos)
Get a
Temporal value at pos . |
default java.time.temporal.Temporal[] |
getTemporalArray(int pos)
Deprecated.
instead use
getArrayOfTemporals(int) |
default UUID |
getUUID(int pos)
Get
UUID value at pos . |
default UUID[] |
getUUIDArray(int pos)
Deprecated.
instead use
getArrayOfUUIDs(int) |
Object |
getValue(int pos)
Get an object value at
pos . |
default <T> T[] |
getValues(Class<T> type,
int pos) |
static Tuple |
of(Object elt1)
Create a tuple of one element.
|
static Tuple |
of(Object elt1,
Object... elts)
Create a tuple of an arbitrary number of elements.
|
static Tuple |
of(Object elt1,
Object elt2)
Create a tuple of two elements.
|
static Tuple |
of(Object elt1,
Object elt2,
Object elt3)
Create a tuple of three elements.
|
static Tuple |
of(Object elt1,
Object elt2,
Object elt3,
Object elt4)
Create a tuple of four elements.
|
static Tuple |
of(Object elt1,
Object elt2,
Object elt3,
Object elt4,
Object elt5)
Create a tuple of five elements.
|
static Tuple |
of(Object elt1,
Object elt2,
Object elt3,
Object elt4,
Object elt5,
Object elt6)
Create a tuple of six elements.
|
int |
size() |
static Tuple |
tuple() |
static Tuple |
tuple(List<Object> elements)
Create a tuple with the provided
elements list. |
default List<Class<?>> |
types() |
static Tuple |
wrap(List<Object> list)
Wrap the provided
list with a tuple. |
static Tuple |
wrap(Object... array)
Wrap the provided
array with a tuple. |
static final Object JSON_NULL
null
value. This is only
used when the database supports JSON types.static Tuple tuple()
static Tuple wrap(List<Object> list)
list
with a tuple.
static Tuple wrap(Object... array)
array
with a tuple.
static Tuple of(Object elt1)
elt1
- the first valuestatic Tuple of(Object elt1, Object elt2)
elt1
- the first valueelt2
- the second valuestatic Tuple of(Object elt1, Object elt2, Object elt3)
elt1
- the first valueelt2
- the second valueelt3
- the third valuestatic Tuple of(Object elt1, Object elt2, Object elt3, Object elt4)
elt1
- the first valueelt2
- the second valueelt3
- the third valueelt4
- the fourth valuestatic Tuple of(Object elt1, Object elt2, Object elt3, Object elt4, Object elt5)
elt1
- the first valueelt2
- the second valueelt3
- the third valueelt4
- the fourth valueelt5
- the fifth valuestatic Tuple of(Object elt1, Object elt2, Object elt3, Object elt4, Object elt5, Object elt6)
elt1
- the first valueelt2
- the second valuegelt3
- the third valueelt4
- the fourth valueelt5
- the fifth valueelt6
- the sixth valuestatic Tuple of(Object elt1, Object... elts)
elt1
- the first elementelts
- the remaining elementsstatic Tuple tuple(List<Object> elements)
elements
list.
The elements
list is not modified.elements
- the list of elementsObject getValue(int pos)
pos
.pos
- the positionnull
default Boolean getBoolean(int pos)
pos
.pos
- the positionnull
default Short getShort(int pos)
pos
.pos
- the positionnull
default Integer getInteger(int pos)
pos
.pos
- the positionnull
default Long getLong(int pos)
pos
.pos
- the positionnull
default Float getFloat(int pos)
pos
.pos
- the positionnull
default Double getDouble(int pos)
pos
.pos
- the positionnull
default Numeric getNumeric(int pos)
Numeric
value at pos
.pos
- the positionnull
default String getString(int pos)
pos
.pos
- the positionnull
default Object getJson(int pos)
pos
, the element might be null
or one of the following types:
pos
- the positiondefault java.time.temporal.Temporal getTemporal(int pos)
Temporal
value at pos
.pos
- the positionnull
default java.time.LocalDate getLocalDate(int pos)
LocalDate
value at pos
.pos
- the positionnull
default java.time.LocalTime getLocalTime(int pos)
LocalTime
value at pos
.pos
- the positionnull
default java.time.LocalDateTime getLocalDateTime(int pos)
LocalDateTime
value at pos
.pos
- the positionnull
default java.time.OffsetTime getOffsetTime(int pos)
OffsetTime
value at pos
.pos
- the positionnull
default java.time.OffsetDateTime getOffsetDateTime(int pos)
OffsetDateTime
value at pos
.pos
- the positionnull
default Buffer getBuffer(int pos)
pos
.pos
- the positionnull
default UUID getUUID(int pos)
UUID
value at pos
.pos
- the positionnull
default BigDecimal getBigDecimal(int pos)
BigDecimal
value at pos
.pos
- the positionnull
default Boolean[] getArrayOfBooleans(int pos)
Boolean
value at pos
.pos
- the positionnull
@Deprecated default Boolean[] getBooleanArray(int pos)
getArrayOfBooleans(int)
Boolean
value at pos
.
Target element instance of Object[]
will be
coerced to Boolean[]
.
pos
- the positiondefault Short[] getArrayOfShorts(int pos)
Short
value at pos
.pos
- the positionnull
@Deprecated default Short[] getShortArray(int pos)
getArrayOfShorts(int)
Short
value at pos
.
Target element instance of Number[]
or Object[]
will be
coerced to Short[]
.
pos
- the positiondefault Integer[] getArrayOfIntegers(int pos)
Integer
value at pos
.pos
- the positionnull
@Deprecated default Integer[] getIntegerArray(int pos)
getArrayOfIntegers(int)
Integer
value at pos
.
Target element instance of Number[]
or Object[]
will be
coerced to Integer[]
.
pos
- the positiondefault Long[] getArrayOfLongs(int pos)
Long
value at pos
.pos
- the positionnull
@Deprecated default Long[] getLongArray(int pos)
getArrayOfLongs(int)
Long
value at pos
.
Target element instance of Number[]
or Object[]
will be
coerced to Long[]
.
pos
- the positiondefault Float[] getArrayOfFloats(int pos)
Float
value at pos
.pos
- the positionnull
@Deprecated default Float[] getFloatArray(int pos)
getArrayOfFloats(int)
Float
value at pos
.
Target element instance of Number[]
or Object[]
will be
coerced to Float[]
.
pos
- the positiondefault Double[] getArrayOfDoubles(int pos)
Double
value at pos
.pos
- the positionnull
@Deprecated default Double[] getDoubleArray(int pos)
getArrayOfDoubles(int)
Double
value at pos
.
Target element instance of Number[]
or Object[]
will be
coerced to Double[]
.
pos
- the positiondefault Numeric[] getArrayOfNumerics(int pos)
Numeric
value at pos
.pos
- the columnnull
@Deprecated default Numeric[] getNumericArray(int pos)
getArrayOfNumerics(int)
Numeric
value at pos
.pos
- the columndefault String[] getArrayOfStrings(int pos)
String
value at pos
.pos
- the positionnull
@Deprecated default String[] getStringArray(int pos)
getArrayOfStrings(int)
String
value at pos
.
Target element instance of Object[]
will be
coerced to String[]
.
pos
- the positiondefault Object[] getArrayOfJsons(int pos)
pos
, the element might be null
or one of the following types:
pos
- the positiondefault java.time.temporal.Temporal[] getArrayOfTemporals(int pos)
Temporal
value at pos
.pos
- the positionnull
@Deprecated default java.time.temporal.Temporal[] getTemporalArray(int pos)
getArrayOfTemporals(int)
Temporal
value at pos
.pos
- the positiondefault java.time.LocalDate[] getArrayOfLocalDates(int pos)
LocalDate
value at pos
.pos
- the positionnull
@Deprecated default java.time.LocalDate[] getLocalDateArray(int pos)
getArrayOfLocalDates(int)
LocalDate
value at pos
.
Target element instance of LocalDateTime[]
will be
coerced to LocalDate[]
.
pos
- the positiondefault java.time.LocalTime[] getArrayOfLocalTimes(int pos)
LocalTime
value at pos
.pos
- the positionnull
@Deprecated default java.time.LocalTime[] getLocalTimeArray(int pos)
getArrayOfLocalTimes(int)
LocalTime
value at pos
.
Target element instance of LocalDateTime[]
will be
coerced to LocalTime[]
.
pos
- the positiondefault java.time.LocalDateTime[] getArrayOfLocalDateTimes(int pos)
LocalDateTime
value at pos
.pos
- the positionnull
@Deprecated default java.time.LocalDateTime[] getLocalDateTimeArray(int pos)
getArrayOfLocalDateTimes(int)
LocalDateTime
value at pos
.pos
- the positiondefault java.time.OffsetTime[] getArrayOfOffsetTimes(int pos)
OffsetTime
value at pos
.pos
- the positionnull
@Deprecated default java.time.OffsetTime[] getOffsetTimeArray(int pos)
getArrayOfOffsetTimes(int)
OffsetTime
value at pos
.
Target element instance of OffsetDateTime[]
will be
coerced to OffsetTime[]
.
pos
- the positiondefault java.time.OffsetDateTime[] getArrayOfOffsetDateTimes(int pos)
OffsetDateTime
value at pos
.pos
- the positionnull
@Deprecated default java.time.OffsetDateTime[] getOffsetDateTimeArray(int pos)
getArrayOfOffsetDateTimes(int)
OffsetDateTime
value at pos
.pos
- the positiondefault Buffer[] getArrayOfBuffers(int pos)
Buffer
value at pos
.pos
- the positionnull
@Deprecated default Buffer[] getBufferArray(int pos)
getArrayOfBuffers(int)
Buffer
value at pos
.pos
- the positiondefault UUID[] getArrayOfUUIDs(int pos)
UUID
value at pos
.pos
- the columnnull
@Deprecated default UUID[] getUUIDArray(int pos)
getArrayOfUUIDs(int)
UUID
value at pos
.pos
- the columndefault BigDecimal[] getArrayOfBigDecimals(int pos)
BigDecimal
value at pos
.pos
- the columnnull
@Deprecated default BigDecimal[] getBigDecimalArray(int pos)
getArrayOfBigDecimals(int)
BigDecimal
value at pos
.pos
- the columnTuple addValue(Object value)
value
- the valuedefault Tuple addBoolean(Boolean value)
value
- the valuedefault Tuple addShort(Short value)
value
- the valuedefault Tuple addInteger(Integer value)
value
- the valuedefault Tuple addLong(Long value)
value
- the valuedefault Tuple addFloat(Float value)
value
- the valuedefault Tuple addDouble(Double value)
value
- the valuedefault Tuple addString(String value)
value
- the valuedefault Tuple addTemporal(java.time.temporal.Temporal value)
Temporal
value at the end of the tuple.value
- the valuedefault Tuple addLocalDate(java.time.LocalDate value)
LocalDate
value at the end of the tuple.value
- the valuedefault Tuple addLocalTime(java.time.LocalTime value)
LocalTime
value at the end of the tuple.value
- the valuedefault Tuple addLocalDateTime(java.time.LocalDateTime value)
LocalDateTime
value at the end of the tuple.value
- the valuedefault Tuple addOffsetTime(java.time.OffsetTime value)
OffsetTime
value at the end of the tuple.value
- the valuedefault Tuple addOffsetDateTime(java.time.OffsetDateTime value)
OffsetDateTime
value at the end of the tuple.value
- the valuedefault Tuple addBuffer(Buffer value)
value
- the valuedefault Tuple addUUID(UUID value)
UUID
value at the end of the tuple.value
- the valuedefault Tuple addBigDecimal(BigDecimal value)
BigDecimal
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfBoolean(Boolean[] value)
Boolean
value at the end of the tuple.value
- the value@Deprecated default Tuple addBooleanArray(Boolean[] value)
addArrayOfBoolean(Boolean[])
Boolean
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfShort(Short[] value)
Short
value at the end of the tuple.value
- the value@Deprecated default Tuple addShortArray(Short[] value)
addArrayOfShort(Short[])
Short
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfInteger(Integer[] value)
Integer
value at the end of the tuple.value
- the value@Deprecated default Tuple addIntegerArray(Integer[] value)
addArrayOfInteger(Integer[])
Integer
value at the end of the tuple.
Target element instance of Number[]
will be
coerced to Integer[]
.
value
- the valuedefault Tuple addArrayOfLong(Long[] value)
Long
value at the end of the tuple.value
- the value@Deprecated default Tuple addLongArray(Long[] value)
addArrayOfLong(Long[])
Long
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfFloat(Float[] value)
Float
value at the end of the tuple.value
- the value@Deprecated default Tuple addFloatArray(Float[] value)
addArrayOfFloat(Float[])
Float
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfDouble(Double[] value)
Double
value at the end of the tuple.value
- the value@Deprecated default Tuple addDoubleArray(Double[] value)
addArrayOfDouble(Double[])
Double
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfString(String[] value)
String
value at the end of the tuple.value
- the value@Deprecated default Tuple addStringArray(String[] value)
addArrayOfString(String[])
String
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfTemporal(java.time.temporal.Temporal[] value)
Temporal
value at the end of the tuple.value
- the value@Deprecated default Tuple addTemporalArray(java.time.temporal.Temporal[] value)
addArrayOfTemporal(Temporal[])
Temporal
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfLocalDate(java.time.LocalDate[] value)
LocalDate
value at the end of the tuple.value
- the value@Deprecated default Tuple addLocalDateArray(java.time.LocalDate[] value)
addArrayOfLocalDate(LocalDate[])
LocalDate
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfLocalTime(java.time.LocalTime[] value)
LocalTime
value at the end of the tuple.value
- the value@Deprecated default Tuple addLocalTimeArray(java.time.LocalTime[] value)
addArrayOfLocalTime(LocalTime[])
LocalTime
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfLocalDateTime(java.time.LocalDateTime[] value)
LocalDateTime
value at the end of the tuple.value
- the value@Deprecated default Tuple addLocalDateTimeArray(java.time.LocalDateTime[] value)
addArrayOfLocalDateTime(LocalDateTime[])
LocalDateTime
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfOffsetTime(java.time.OffsetTime[] value)
OffsetTime
value at the end of the tuple.value
- the value@Deprecated default Tuple addOffsetTimeArray(java.time.OffsetTime[] value)
addArrayOfOffsetTime(OffsetTime[])
OffsetTime
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfOffsetDateTime(java.time.OffsetDateTime[] value)
OffsetDateTime
value at the end of the tuple.value
- the value@Deprecated default Tuple addOffsetDateTimeArray(java.time.OffsetDateTime[] value)
addArrayOfOffsetDateTime(OffsetDateTime[])
OffsetDateTime
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfBuffer(Buffer[] value)
Buffer
value at the end of the tuple.value
- the value@Deprecated default Tuple addBufferArray(Buffer[] value)
addArrayOfBuffer(Buffer[])
Buffer
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfUUID(UUID[] value)
UUID
value at the end of the tuple.value
- the value@Deprecated default Tuple addUUIDArray(UUID[] value)
addArrayOfUUID(UUID[])
UUID
value at the end of the tuple.value
- the valuedefault Tuple addArrayOfBigDecimal(BigDecimal[] value)
BigDecimal
value at the end of the tuple.value
- the value@Deprecated default Tuple addBigDecimalArray(BigDecimal[] value)
addArrayOfBigDecimal(BigDecimal[])
BigDecimal
value at the end of the tuple.value
- the valuedefault <T> T get(Class<T> type, int pos)
default <T> T[] getValues(Class<T> type, int pos)
default <T> Tuple addValues(T[] value)
int size()
void clear()
default String deepToString()
Object.toString()
value of each element,
separated by a comma (,) characterCopyright © 2023 Eclipse. All rights reserved.