Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
BeanUtils1 provided the functionality to access maps as if they where beans. Implement the same for BeanUtils2 so that one can do:
Map<String, ...> map = ... on(map).get("mykey").get();
this would result in getting the value thats held under "mykey" in the map. Implementing this probably involves creating a new BeanAccessor implementation that works on maps.