Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Wildcards types support #111

Closed
fborriello opened this issue Dec 19, 2019 · 1 comment · Fixed by #112
Closed

Wildcards types support #111

fborriello opened this issue Dec 19, 2019 · 1 comment · Fixed by #112
Assignees
Labels
enhancement New feature or request

Comments

@fborriello
Copy link
Contributor

Description
As per today, the library is able to transform all the elements inside a Collection or a Map if their type is specified in the generic type, so it's not able to transform object described as following:

private final Collection<? super Object> collection;
private final Collection collection;

private final Map map;
private final Map<?, ?> map;
private final Map<? super Object, ? super Object> map;

The purpose of this issue is to make the library able to transform such objects.

@fborriello fborriello added the enhancement New feature or request label Dec 19, 2019
@fborriello fborriello self-assigned this Dec 19, 2019
@fborriello
Copy link
Contributor Author

Feature available on the release: 1.6.4 for jdk11 and 1.6.3.2-jdk8 for jdk8

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant