Handle primitive types and arrays

Description

Right now, there is no special handling for methods with primitive or array parameters.
This results in errors, when trying to use bean classes, that have such methods, with to-java and from-java.

The attached patch implements handling of primitives and arrays in the following manner:

  • When the :default methods of from-java and to-java see an array type, they extend the multimethods for that array type.
    Issue: Is Iterable the right interface to extend the multimethod to? Sequential also came to mind, but Iterable was used elsewhere.

  • Values that hit a numeric primitive slot (in to-java) are manually boxed, so they aren't passed as longs.

Environment

None

Attachments

2

Activity

Show:

Sean Corfield October 13, 2019 at 8:12 PM

Seems to have been fixed in commits back in 2011 and was part of the 0.1.1 release.

Sean Corfield October 13, 2019 at 12:21 AM

Based on the commit comment above and looking at the code and tests, it looks like this issue was addressed (back in 2011) but the issue just didn’t get resolved/closed out? (I’m doing some housekeeping on java.data Jira issues, trying to establish which ones are still relevant)

Cosmin Stejerean October 4, 2011 at 1:35 PM

Cosmin Stejerean October 4, 2011 at 1:35 PM

Fixed

Details

Assignee

Reporter

Patch

Code and Test

Priority

Created October 1, 2011 at 6:05 PM
Updated October 13, 2019 at 8:12 PM
Resolved October 13, 2019 at 8:12 PM