Mapped Data
Data Object for storing data that is composed of tag value pairs. This includes JSON-style data. The values in the MappedData can be of any type as long as they are Serializable and Cloneable.
Class name: com.datashyft.pipeline.dataobjects.MappedData
MappedData(Map<String, Object> data) — Creates a new Mapped Data object and populates its internal map with the provided data. The data in the map is not copied, so modifications to that data will modify the objects inside the Mapped Data object.
MappedData(Map<String, List<String> tags, String type, Map<String, Object> data) — Creates a new Mapped Data object, populates its internal map with the provided data, sets its tags to the provided map, and sets the type. The data in the map is not copied, so modifications to that data will modify the objects inside the Mapped Data object.
getMappedData() — Returns a Map containing the data stored in this data object.