Package org.apache.torque.om.mapper
Klasse BigDecimalMapper
java.lang.Object
org.apache.torque.om.mapper.BigDecimalMapper
- Alle implementierten Schnittstellen:
Serializable
,RecordMapper<BigDecimal>
Maps a database record to a BigDecimal.
- Version:
- $Id: BigDecimalMapper.java 1839288 2018-08-27 09:48:33Z tv $
- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungConstructs a BigDecimalMapper with an offset of 0.BigDecimalMapper
(int offset) Constructs a BigDecimalMapper with the given offset. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungprocessRow
(ResultSet resultSet, int rowOffset, Criteria criteria) Maps the current row in the result to a BigDecimal.
-
Konstruktordetails
-
BigDecimalMapper
public BigDecimalMapper()Constructs a BigDecimalMapper with an offset of 0. -
BigDecimalMapper
public BigDecimalMapper(int offset) Constructs a BigDecimalMapper with the given offset.- Parameter:
offset
- the additional offset (0 based).
-
-
Methodendetails
-
processRow
public BigDecimal processRow(ResultSet resultSet, int rowOffset, Criteria criteria) throws TorqueException Maps the current row in the result to a BigDecimal.- Angegeben von:
processRow
in SchnittstelleRecordMapper<BigDecimal>
- Parameter:
resultSet
- the result set to map, not null.rowOffset
- a possible offset in the columns to be considered (if previous columns contain other objects), or 0 for no offset.criteria
- The criteria which created the result set, or null if not known. This parameter is not used by this record mapper.- Gibt zurück:
- the BigDecimal retrieved from the result set.
- Löst aus:
TorqueException
- when the mapping fails.
-