I have a bunch of @Data classes using Lombok and I want to migrate all of them to use the new Record functionality available in Java 14.
I know it's a little bit earlier but this is an experimental test that I'm doing.
The main problem here is involving inheritance. I have a class B which extends a class A. Is there any way of using Records with inheritance?