Package io.micronaut.data.jdbc.mapper
Class ColumnIndexCallableResultReader
java.lang.Object
io.micronaut.data.jdbc.mapper.ColumnIndexCallableResultReader
- All Implemented Interfaces:
ResultReader<CallableStatement,
Integer>
@Internal
public final class ColumnIndexCallableResultReader
extends Object
implements ResultReader<CallableStatement,Integer>
A reader that uses the column index.
- Since:
- 4.2.0
- Author:
- Denis Stepanov
-
Constructor Summary
ConstructorDescriptionColumnIndexCallableResultReader
(DataConversionService conversionService) Constructs a new instance. -
Method Summary
Modifier and TypeMethodDescriptionio.micronaut.core.convert.ConversionService
Get conversion service.<T> T
getRequiredValue
(CallableStatement cs, Integer index, Class<T> type) Get a value from the given result set for the given name and type.boolean
Move the index to the next result if possible.readBigDecimal
(CallableStatement cs, Integer index) Read a BigDecimal value for the given name.boolean
readBoolean
(CallableStatement cs, Integer index) Read a boolean value for the given name.byte
readByte
(CallableStatement cs, Integer index) Read a byte value for the given name.byte[]
readBytes
(CallableStatement cs, Integer index) Read a byte[] value for the given name.char
readChar
(CallableStatement cs, Integer index) Read a char value for the given name.readDate
(CallableStatement cs, Integer index) Read a date value for the given name.double
readDouble
(CallableStatement cs, Integer index) Read a double value for the given name.@Nullable Object
readDynamic
(@NonNull CallableStatement cs, @NonNull Integer index, @NonNull DataType dataType) Read a value dynamically using the result set and the given name and data type.float
readFloat
(CallableStatement cs, Integer index) Read a float value for the given name.int
readInt
(CallableStatement cs, Integer index) Read a int value for the given name.long
readLong
(CallableStatement cs, Integer index) Read a long value for the given name.short
readShort
(CallableStatement cs, Integer index) Read a short value for the given name.@Nullable String
readString
(CallableStatement cs, Integer index) Read a string value for the given name.readTime
(CallableStatement cs, Integer index) Read a time value for the given index.readTimestamp
(CallableStatement cs, Integer index) Read a timestamp value for the given index.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.micronaut.data.runtime.mapper.ResultReader
convertRequired, convertRequired, readUUID
-
Constructor Details
-
ColumnIndexCallableResultReader
Constructs a new instance.- Parameters:
conversionService
- The data conversion service
-
-
Method Details
-
getConversionService
public io.micronaut.core.convert.ConversionService getConversionService()Description copied from interface:ResultReader
Get conversion service.- Specified by:
getConversionService
in interfaceResultReader<CallableStatement,
Integer> - Returns:
- the instance of
ConversionService
-
readDynamic
@Nullable public @Nullable Object readDynamic(@NonNull @NonNull CallableStatement cs, @NonNull @NonNull Integer index, @NonNull @NonNull DataType dataType) Description copied from interface:ResultReader
Read a value dynamically using the result set and the given name and data type.- Specified by:
readDynamic
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The namedataType
- The data type- Returns:
- The value, can be null
-
readTimestamp
Description copied from interface:ResultReader
Read a timestamp value for the given index.- Specified by:
readTimestamp
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The index (such as the column name)- Returns:
- The char value
-
readTime
Description copied from interface:ResultReader
Read a time value for the given index.- Specified by:
readTime
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The index (such as the column name)- Returns:
- The char value
-
readLong
Description copied from interface:ResultReader
Read a long value for the given name.- Specified by:
readLong
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The long value
-
readChar
Description copied from interface:ResultReader
Read a char value for the given name.- Specified by:
readChar
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The char value
-
readDate
Description copied from interface:ResultReader
Read a date value for the given name.- Specified by:
readDate
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The char value
-
readString
Description copied from interface:ResultReader
Read a string value for the given name.- Specified by:
readString
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The string value
-
readInt
Description copied from interface:ResultReader
Read a int value for the given name.- Specified by:
readInt
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The int value
-
readBoolean
Description copied from interface:ResultReader
Read a boolean value for the given name.- Specified by:
readBoolean
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The boolean value
-
readFloat
Description copied from interface:ResultReader
Read a float value for the given name.- Specified by:
readFloat
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The float value
-
readByte
Description copied from interface:ResultReader
Read a byte value for the given name.- Specified by:
readByte
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The byte value
-
readShort
Description copied from interface:ResultReader
Read a short value for the given name.- Specified by:
readShort
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The short value
-
readDouble
Description copied from interface:ResultReader
Read a double value for the given name.- Specified by:
readDouble
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The double value
-
readBigDecimal
Description copied from interface:ResultReader
Read a BigDecimal value for the given name.- Specified by:
readBigDecimal
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The BigDecimal value
-
readBytes
Description copied from interface:ResultReader
Read a byte[] value for the given name.- Specified by:
readBytes
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result setindex
- The name (such as the column name)- Returns:
- The byte[] value
-
getRequiredValue
public <T> T getRequiredValue(CallableStatement cs, Integer index, Class<T> type) throws DataAccessException Description copied from interface:ResultReader
Get a value from the given result set for the given name and type.- Specified by:
getRequiredValue
in interfaceResultReader<CallableStatement,
Integer> - Type Parameters:
T
- The generic type- Parameters:
cs
- The result setindex
- The nametype
- The type- Returns:
- The value
- Throws:
DataAccessException
- if the value cannot be read
-
next
Description copied from interface:ResultReader
Move the index to the next result if possible.- Specified by:
next
in interfaceResultReader<CallableStatement,
Integer> - Parameters:
cs
- The result set- Returns:
- The next result
-