We have some Map<String, Object>
in Java that I would like to make available into a Jython function. I would like to access the contents via
mymap.foo.bar
rather than
mymap['foo']['bar']
Is there a way to wrap the Map
in an object so that it has this behavior in Jython? (e.g. like the __getattr__
method in Python, only implemented in Java)