#858 Update documentation with java.sql.* implicit type conversions

This commit is contained in:
Filip Hrisafov 2016-09-22 18:07:04 +02:00 committed by Gunnar Morling
parent 75e3fe1e72
commit fb286e3d39

View File

@ -615,6 +615,12 @@ public interface CarMapper {
* Between `java.time.ZonedDateTime` from Java 8 Date-Time package and `java.util.Calendar`. * Between `java.time.ZonedDateTime` from Java 8 Date-Time package and `java.util.Calendar`.
* Between `java.sql.Date` and `java.util.Date`
* Between `java.sql.Time` and `java.util.Date`
* Between `java.sql.Timestamp` and `java.util.Date`
* When converting from a `String`, omitting `Mapping#dateFormat` results in using the default pattern and date format symbols for the default locale. An exception to this rule is `XmlGregorianCalendar` which results in parsing the `String` according to http://www.w3.org/TR/xmlschema-2/#dateTime[XML Schema 1.0 Part 2, Section 3.2.7-14.1, Lexical Representation]. * When converting from a `String`, omitting `Mapping#dateFormat` results in using the default pattern and date format symbols for the default locale. An exception to this rule is `XmlGregorianCalendar` which results in parsing the `String` according to http://www.w3.org/TR/xmlschema-2/#dateTime[XML Schema 1.0 Part 2, Section 3.2.7-14.1, Lexical Representation].
[[mapping-object-references]] [[mapping-object-references]]