Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 842 Bytes

CHANGELOG.MD

File metadata and controls

23 lines (20 loc) · 842 Bytes

2.3.0

  • 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.

2.2.1

  • Added asEnumSet
  • Added asHashtable
  • Added asIdentityHashMap
  • Added asConcurrentHashMap
  • Added asCopyOnWriteArrayList
  • Added asCopyOnWriteArraySet

2.2.0

  • 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

2.1.0

  • Added DataType.asEnumMap
  • Added Unit Tests