Modifier and Type | Method and Description |
---|---|
default BigDecimal[] |
getArrayOfBigDecimals(String column)
Get an array of
BigDecimal value for the given column . |
default Boolean[] |
getArrayOfBooleans(String column)
Get an array of
Boolean value for the given column . |
default Buffer[] |
getArrayOfBuffers(String column)
Get an array of
Buffer value for the given column . |
default Double[] |
getArrayOfDoubles(String column)
Get an array of
Double value for the given column . |
default Float[] |
getArrayOfFloats(String column)
Get an array of
Float value for the given column . |
default Integer[] |
getArrayOfIntegers(String column)
Get an array of
Integer value for the given column . |
default Object[] |
getArrayOfJsons(String column)
Get an array of JSON elements for the given
column , the element might be null or one of the following types:
String
Number
JsonObject
JsonArray
Boolean
|
default java.time.LocalDate[] |
getArrayOfLocalDates(String column)
Get an array of
LocalDate value for the given column . |
default java.time.LocalDateTime[] |
getArrayOfLocalDateTimes(String column)
Get an array of
LocalDateTime value for the given column . |
default java.time.LocalTime[] |
getArrayOfLocalTimes(String column)
Get an array of
LocalTime value for the given column . |
default Long[] |
getArrayOfLongs(String column)
Get an array of
Long value for the given column . |
default Numeric[] |
getArrayOfNumerics(String column)
Get an array of
Numeric value for the given column . |
default java.time.OffsetDateTime[] |
getArrayOfOffsetDateTimes(String column)
Get an array of
OffsetDateTime value for the given column . |
default java.time.OffsetTime[] |
getArrayOfOffsetTimes(String column)
Get an array of
OffsetTime value for the given column . |
default Short[] |
getArrayOfShorts(String column)
Get an array of
Short value for the given column . |
default String[] |
getArrayOfStrings(String column)
Get an array of
String value for the given column . |
default java.time.temporal.Temporal[] |
getArrayOfTemporals(String column)
Get an array of
Temporal value for the given column . |
default UUID[] |
getArrayOfUUIDs(String column)
Get an array of
UUID value for the given column . |
default BigDecimal |
getBigDecimal(String column)
Get
BigDecimal value for the given column . |
default BigDecimal[] |
getBigDecimalArray(String column)
Deprecated.
instead use
getArrayOfBigDecimals(String) |
default Boolean |
getBoolean(String column)
Get a boolean value for the given
column . |
default Boolean[] |
getBooleanArray(String column)
Deprecated.
instead use
getArrayOfBooleans(String) |
default Buffer |
getBuffer(String column)
Get a buffer value for the given
column . |
default Buffer[] |
getBufferArray(String column)
Deprecated.
instead use
getArrayOfBuffers(String) |
int |
getColumnIndex(String name)
Get a column position for the given column
name . |
String |
getColumnName(int pos)
Get a column name for the given
column . |
default Double |
getDouble(String column)
Get a double value for the given
column . |
default Double[] |
getDoubleArray(String column)
Deprecated.
instead use
getArrayOfDoubles(String) |
default Float |
getFloat(String column)
Get a float value for the given
column . |
default Float[] |
getFloatArray(String column)
Deprecated.
instead use
getArrayOfFloats(String) |
default Integer |
getInteger(String column)
Get an integer value for the given
column . |
default Integer[] |
getIntegerArray(String column)
Deprecated.
instead use
getArrayOfIntegers(String) |
default Object |
getJson(String column)
Get a JSON element for the given
column , the element might be null or one of the following types:
String
Number
JsonObject
JsonArray
Boolean
|
default java.time.LocalDate |
getLocalDate(String column)
Get
LocalDate value for the given column . |
default java.time.LocalDate[] |
getLocalDateArray(String column)
Deprecated.
instead use
getArrayOfLocalDates(String) |
default java.time.LocalDateTime |
getLocalDateTime(String column)
Get
LocalDateTime value for the given column . |
default java.time.LocalDateTime[] |
getLocalDateTimeArray(String column)
Deprecated.
instead use
getArrayOfLocalDateTimes(String) |
default java.time.LocalTime |
getLocalTime(String column)
Get
LocalTime value for the given column . |
default java.time.LocalTime[] |
getLocalTimeArray(String column)
Deprecated.
instead use
getArrayOfLocalTimes(String) |
default Long |
getLong(String column)
Get a long value for the given
column . |
default Long[] |
getLongArray(String column)
Deprecated.
instead use
getArrayOfLongs(String) |
default Numeric |
getNumeric(String column)
Get a numeric value for the given
column . |
default Numeric[] |
getNumericArray(String column)
Deprecated.
instead use
getArrayOfNumerics(String) |
default java.time.OffsetDateTime |
getOffsetDateTime(String column)
Get
OffsetDateTime value for the given column . |
default java.time.OffsetDateTime[] |
getOffsetDateTimeArray(String column)
Deprecated.
instead use
getArrayOfOffsetDateTimes(String) |
default java.time.OffsetTime |
getOffsetTime(String column)
Get
OffsetTime value for the given column . |
default java.time.OffsetTime[] |
getOffsetTimeArray(String column)
Deprecated.
instead use
getArrayOfOffsetTimes(String) |
default Short |
getShort(String column)
Get a short value for the given
column . |
default Short[] |
getShortArray(String column)
Deprecated.
instead use
getArrayOfShorts(String) |
default String |
getString(String column)
Get a string value for the given
column . |
default String[] |
getStringArray(String column)
Deprecated.
instead use
getArrayOfStrings(String) |
default java.time.temporal.Temporal |
getTemporal(String column)
Get a temporal value for the given
column . |
default java.time.temporal.Temporal[] |
getTemporalArray(String column)
Deprecated.
instead use
getArrayOfTemporals(String) |
default UUID |
getUUID(String column)
Get
UUID value for the given column . |
default UUID[] |
getUUIDArray(String column)
Deprecated.
instead use
getArrayOfUUIDs(String) |
default Object |
getValue(String column)
Get an object value for the given
column . |
<T> T[] |
getValues(Class<T> type,
int idx) |
addArrayOfBigDecimal, addArrayOfBoolean, addArrayOfBuffer, addArrayOfDouble, addArrayOfFloat, addArrayOfInteger, addArrayOfLocalDate, addArrayOfLocalDateTime, addArrayOfLocalTime, addArrayOfLong, addArrayOfOffsetDateTime, addArrayOfOffsetTime, addArrayOfShort, addArrayOfString, addArrayOfTemporal, addArrayOfUUID, addBigDecimal, addBigDecimalArray, addBoolean, addBooleanArray, addBuffer, addBufferArray, addDouble, addDoubleArray, addFloat, addFloatArray, addInteger, addIntegerArray, addLocalDate, addLocalDateArray, addLocalDateTime, addLocalDateTimeArray, addLocalTime, addLocalTimeArray, addLong, addLongArray, addOffsetDateTime, addOffsetDateTimeArray, addOffsetTime, addOffsetTimeArray, addShort, addShortArray, addString, addStringArray, addTemporal, addTemporalArray, addUUID, addUUIDArray, addValue, addValues, clear, deepToString, get, getArrayOfBigDecimals, getArrayOfBooleans, getArrayOfBuffers, getArrayOfDoubles, getArrayOfFloats, getArrayOfIntegers, getArrayOfJsons, getArrayOfLocalDates, getArrayOfLocalDateTimes, getArrayOfLocalTimes, getArrayOfLongs, getArrayOfNumerics, getArrayOfOffsetDateTimes, getArrayOfOffsetTimes, getArrayOfShorts, getArrayOfStrings, getArrayOfTemporals, getArrayOfUUIDs, getBigDecimal, getBigDecimalArray, getBoolean, getBooleanArray, getBuffer, getBufferArray, getDouble, getDoubleArray, getFloat, getFloatArray, getInteger, getIntegerArray, getJson, getLocalDate, getLocalDateArray, getLocalDateTime, getLocalDateTimeArray, getLocalTime, getLocalTimeArray, getLong, getLongArray, getNumeric, getNumericArray, getOffsetDateTime, getOffsetDateTimeArray, getOffsetTime, getOffsetTimeArray, getShort, getShortArray, getString, getStringArray, getTemporal, getTemporalArray, getUUID, getUUIDArray, getValue, of, of, of, of, of, of, of, size, tuple, tuple, types, wrap, wrap
String getColumnName(int pos)
column
.pos
- the column positionnull
int getColumnIndex(String name)
name
.name
- the column name-1
if not founddefault Object getValue(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Boolean getBoolean(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Short getShort(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Integer getInteger(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Long getLong(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Float getFloat(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Double getDouble(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Numeric getNumeric(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault String getString(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Object getJson(String column)
column
, the element might be null
or one of the following types:
column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.temporal.Temporal getTemporal(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.LocalDate getLocalDate(String column)
LocalDate
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.LocalTime getLocalTime(String column)
LocalTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.LocalDateTime getLocalDateTime(String column)
LocalDateTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.OffsetTime getOffsetTime(String column)
OffsetTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.OffsetDateTime getOffsetDateTime(String column)
OffsetDateTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Buffer getBuffer(String column)
column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault UUID getUUID(String column)
UUID
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault BigDecimal getBigDecimal(String column)
BigDecimal
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Boolean[] getArrayOfBooleans(String column)
Boolean
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default Boolean[] getBooleanArray(String column)
getArrayOfBooleans(String)
Boolean
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Short[] getArrayOfShorts(String column)
Short
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default Short[] getShortArray(String column)
getArrayOfShorts(String)
Short
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Integer[] getArrayOfIntegers(String column)
Integer
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default Integer[] getIntegerArray(String column)
getArrayOfIntegers(String)
Integer
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Long[] getArrayOfLongs(String column)
Long
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default Long[] getLongArray(String column)
getArrayOfLongs(String)
Long
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Float[] getArrayOfFloats(String column)
Float
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default Float[] getFloatArray(String column)
getArrayOfFloats(String)
Float
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Double[] getArrayOfDoubles(String column)
Double
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default Double[] getDoubleArray(String column)
getArrayOfDoubles(String)
Double
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Numeric[] getArrayOfNumerics(String column)
Numeric
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default Numeric[] getNumericArray(String column)
getArrayOfNumerics(String)
Numeric
value for the given column
.column
- the columncolumn
valueNoSuchElementException
- when the column
does not existdefault String[] getArrayOfStrings(String column)
String
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default String[] getStringArray(String column)
getArrayOfStrings(String)
String
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.temporal.Temporal[] getArrayOfTemporals(String column)
Temporal
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default java.time.temporal.Temporal[] getTemporalArray(String column)
getArrayOfTemporals(String)
Temporal
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.LocalDate[] getArrayOfLocalDates(String column)
LocalDate
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default java.time.LocalDate[] getLocalDateArray(String column)
getArrayOfLocalDates(String)
LocalDate
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.LocalTime[] getArrayOfLocalTimes(String column)
LocalTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default java.time.LocalTime[] getLocalTimeArray(String column)
getArrayOfLocalTimes(String)
LocalTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.LocalDateTime[] getArrayOfLocalDateTimes(String column)
LocalDateTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default java.time.LocalDateTime[] getLocalDateTimeArray(String column)
getArrayOfLocalDateTimes(String)
LocalDateTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.OffsetTime[] getArrayOfOffsetTimes(String column)
OffsetTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default java.time.OffsetTime[] getOffsetTimeArray(String column)
getArrayOfOffsetTimes(String)
OffsetTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault java.time.OffsetDateTime[] getArrayOfOffsetDateTimes(String column)
OffsetDateTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default java.time.OffsetDateTime[] getOffsetDateTimeArray(String column)
getArrayOfOffsetDateTimes(String)
OffsetDateTime
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Buffer[] getArrayOfBuffers(String column)
Buffer
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default Buffer[] getBufferArray(String column)
getArrayOfBuffers(String)
Buffer
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault UUID[] getArrayOfUUIDs(String column)
UUID
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default UUID[] getUUIDArray(String column)
getArrayOfUUIDs(String)
UUID
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault BigDecimal[] getArrayOfBigDecimals(String column)
BigDecimal
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not exist@Deprecated default BigDecimal[] getBigDecimalArray(String column)
getArrayOfBigDecimals(String)
BigDecimal
value for the given column
.column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existdefault Object[] getArrayOfJsons(String column)
column
, the element might be null
or one of the following types:
column
- the column namecolumn
valueNoSuchElementException
- when the column
does not existCopyright © 2023 Eclipse. All rights reserved.