- Arrays, Maps and Collections now allow you to save "null" values
- Maps only allow "null" for values - keys must still be not-null
- Some implementations of Map or Collection might not support "null" as value. It's up to you to take care of this.
- Added asEnumSet
- Added asHashtable
- Added asIdentityHashMap
- Added asConcurrentHashMap
- Added asCopyOnWriteArrayList
- Added asCopyOnWriteArraySet
- Complete rewrite of all methods related to maps and collections
- asGenericMap and asGenericCollection are now type-safe and properly infer their generic types
- asGenericMap and asGenericCollection now take a single Supplier / Supplier if you want to use custom Maps/Collections
- Added asLinkedList
- Added new Unit Tests
- Added DataType.asEnumMap
- Added Unit Tests