Interface JdbcValuesMapping
-
- All Known Implementing Classes:
JdbcValuesMappingImpl
,StandardJdbcValuesMapping
public interface JdbcValuesMapping
The "resolved" form ofJdbcValuesMappingProducer
providing access to resolved JDBC results (SqlSelection
) descriptors and resolved domain results (DomainResult
) descriptors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<DomainResult<?>>
getDomainResults()
int
getRowSize()
List<SqlSelection>
getSqlSelections()
The JDBC selection descriptors.List<DomainResultAssembler<?>>
resolveAssemblers(AssemblerCreationState creationState)
-
-
-
Method Detail
-
getSqlSelections
List<SqlSelection> getSqlSelections()
The JDBC selection descriptors. Used to read ResultSet values and build the "JDBC values array"
-
getRowSize
int getRowSize()
-
getDomainResults
List<DomainResult<?>> getDomainResults()
-
resolveAssemblers
List<DomainResultAssembler<?>> resolveAssemblers(AssemblerCreationState creationState)
-
-