drekbour
drekbour
That workaround using a cache is absolutely not suitable for inclusion in the library itself. The Exception however is because a _very specifically named_ class is already loaded. How else...
Presumably this handles #47 and a large part of #60
I suddenly find myself wanting to inherit a builder from another builder (since I have a pojo which subclasses another pojo) so am quite keen on this issue! To make...
I'm just playing with it. I'm aware that publicising the generic is very bad and for more than simply cosmetic reasons. It's worse if the pojo has generics too and...
FYI See #132 which at least allows builder inheritance even if its ugly.
Per #166, this would also allow a simple implementation of an "updater" to be written.
@kanchev, This last is #80. @mkarneim This issue should be closed!
This issue should be closed!
A few years have passed and Java now supports `Collectors`. Perhaps there is something we can leverage here though I'm still not sure how to specify an _instance_ of `Collector`...
Notes on a complex usecase: Apply a new `@CollectWith` annotation specifying a `Collector` class. ````java @GeneratePojoBuilder public class Thing { @CollectWith(ArrayListCollector.class) public List names; } ```` I think PB should...