I need to convert my customized objects to native Java Object. My Object structure is
Map (String, List<MyObject>)
I am planning to convert this to
Map (String, List <Map <1, Map <MyObject.PropertyName, MyObject.PropertyValue> > >)
Is this the optimal way of doing it? Is there any other efficient way?
Please help. Thanks in Advance.
How about the following?
I think that what you describe fits the Properties class.