I have an class defining an immutable value type that I now need to serialize. The immutability comes from the final fields which are set in the constructor. I\'ve tried ser
Deserialization is implemented by the JVM on a level below the basic language constructs. Specifically, it does not call any constructor.