How to call the base constructor of an object from overloaded varargs constructor?
I have a simple class with a constructor of all available fields and i want to add an overloaded constructor with varargs to allow the creating of objects even if some fields are unknown. class FooClass { int id; String first; String second; String third; FooClass(final int id, final String first, final String second, final… Read More How to call the base constructor of an object from overloaded varargs constructor?