I have a mapper type that's mapping optional list elements from user input to required list elements internally. MapStruct provides the option to set a NullValueMappingStrategy, but that also maps beans to null. It would be helpful for my use case if NullValueMappingStrategy had the option to return default for collection-like objects (map/iterable), but not for beans. It seems something ge
Annotation processor to create immutable objects and builders. Feels like Guava's immutable collections but for regular value objects. JSON, Jackson, Gson, JAX-RS integrations included
This library provides advance views for lists and stacks. Some of the views are build on top of RecyclerView and others are written in their own. Annotations are compiled by annotation processor to generate bind classes. DOCS -->
Android library to simplify reading and writing to SharedPreferences, never write code like this anymore prefs.edit().putString("someKey","someString").apply()
I have a mapper type that's mapping optional list elements from user input to required list elements internally. MapStruct provides the option to set a
NullValueMappingStrategy
, but that also maps beans to null. It would be helpful for my use case ifNullValueMappingStrategy
had the option to return default for collection-like objects (map/iterable), but not for beans. It seems something ge