Changes between Version 58 and Version 59 of j2p
- Timestamp:
- 12/18/23 13:49:11 (11 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v58 v59 87 87 There are a very few exceptions. If some particular inner classes, particularly constants, are used in very specific translators, these translators may opt to attempt to recognise these and process them separately. One example is the JsonDeserializer (jackson-t package) that recognises use of "com.fasterxml.jackson.databind.JsonDeserializer.None". Check the documentation of the translators for details. 88 88 89 ==== =Auto Boxing89 ==== Auto Boxing 90 90 Autoboxing is the automatic conversion that the Java compiler makes between the primitive types and their corresponding object wrapper classes. For example, converting an int to an Integer, a double to a Double, and so on. If the conversion goes the other way, this is called unboxing. 91 91