Will transform an object graph into a Map. It supports a conventional Map (map of maps) where complex attributes are
represented as Map values as well as a flat Map where keys document the path to the value. By default it will
transform to a flat Map. If you need to transform to a Map of Maps set the 'shouldFlattenKeys' property to 'false'
via the
setShouldFlattenKeys(boolean)
method. It supports Collections, Maps and Arrays
which means that for flat maps it will flatten an Object's properties. Below is an example showing how a flattened
Object hierarchy is represented when 'shouldFlattenKeys' is TRUE.
public class Person {
public String name = "John";
public Address address = new Address();
}
public class Address {
private String street = "123 Main Street";
}
The resulting Map would look like this:
{name=John, address.street=123 Main Street}